How to build and debug native code (c) with neon enabled in android studio?
我指的是它是否可以调试-c-c-in-android-studio? Yuchen Zhong 的最后一个回答并做了一些基本的例子,我也可以构建和调试。
所以现在我正在尝试使用我的旧应用程序项目来做同样的事情。我的旧应用程序 buil.gradle 是
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | apply plugin: 'com.android.application' android { compileSdkVersion 18 buildToolsVersion"23.0.1" defaultConfig { applicationId"pku......" minSdkVersion 9 targetSdkVersion 17 sourceSets.main { jni.srcDirs = [] jniLibs.srcDir 'C:/Users/Admin/AndroidStudioProjects/and..../app/src/main/libs' } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' ndk { debuggable = true } } debug { debuggable = true jniDebuggable = true } debug { jniDebuggable true } } } |
更新了 build.gradle,所以我可以通过 android studio 调试我的代码。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | apply plugin: 'com.android.model.application' model { android { compileSdkVersion = 23 buildToolsVersion ="23.0.1" defaultConfig.with { applicationId ="pku........" minSdkVersion.apiLevel = 18 targetSdkVersion.apiLevel = 23 versionCode = 1 versionName ="1.0" //sourceSets.main { // jni.srcDirs = [] // jniLibs.srcDir 'C:/Users/Admin/AndroidStudioProjects/andh...../app/src/main/libs' //} } } android.buildTypes { release { minifyEnabled = false proguardFiles.add(file('proguard-android.txt')) } } android.ndk { abiFilters.add("armeabi-v7a") moduleName ="icandroid" //CFlags.add("-std=c99") //CFlags.add("-mfloat-abi=soft") //CFlags.add("-mfpu=neon") CFlags.addAll(["-std=c99","-mfloat-abi=softfp","-mfpu=neon","-O3","-DCARES_STATICLIB","-Wno-c++11-long-long"]) stl ="stlport_shared" // stlport_shared, gnustl_static,"system" } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' } |
但是在构建时我得到了错误
prebuilt\\windows-x86_64\\lib\\gcc\\arm-linux-androideabi\\4.9\\include\\arm_neon.h
Error:(31, 2) error: #error You must enable NEON instructions (e.g.
-mfloat-abi=softfp -mfpu=neon) to use arm_neon.h
我不知道如何解决这个问题,因为我也提到了 cflag。
请帮我解决这个错误,如果还有更多错误,请更正我。
您的 Application.mk 文件是什么样的?添加