致命错误:' ext / atomicity.h'使用OpenCV 2.4.11找不到文件

时间:2018-05-24 20:43:47

标签: android c++ opencv cmake android-ndk

我发现可能问题出在标准库上......但我不知道如何使用Cmake更改它。 我尝试了很多选项但是没有用。

我的 build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "27.0.3"
    defaultConfig {
        applicationId "com.test"
        minSdkVersion 21
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags "-frtti -fexceptions"
                abiFilters "armeabi-v7a"
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    externalNativeBuild {
        cmake {
            path "src/main/cpp/CMakeLists.txt"
        }
    }
    sourceSets { main { jni.srcDirs = ['src/main/cpp', 'src/main/jniLib/'] } }
}

dependencies {
    implementation project(':openCVLibrary2411')
}

我的 CMAkeList.txt 如下所示:

cmake_minimum_required(VERSION 3.4.1)

#set(ANDROID_STL "c++_shared")

set(CMAKE_INCLUDE_CURRENT_DIR ON)

# OpenCV IMPORT
include_directories(C:/OpenCV-android-sdk_2_4_11/sdk/native/jni/include)
add_library( lib-opencv SHARED IMPORTED )
set_target_properties(lib-opencv PROPERTIES IMPORTED_LOCATION  ${CMAKE_SOURCE_DIR}/../jniLibs/${ANDROID_ABI}/libopencv_java.so)

add_library( # Sets the name of the library.
             native-lib

             # Sets the library as a shared library.
             SHARED

             # Provides a relative path to your source file(s).
             native-lib.cpp
             main.cpp
             )

find_library( # Sets the name of the path variable.
              log-lib

              # Specifies the name of the NDK library that
              # you want CMake to locate.
              log )

target_link_libraries( # Specifies the target library.
                       native-lib

                       # Links the target library to the log library
                       # included in the NDK.
                       ${log-lib} )

我查了this link但是是ndk-build ...但是我正在使用cmake(Android Studio 3 +)

1 个答案:

答案 0 :(得分:0)

你说的问题是因为s​​tl [libc ++]

https://stackoverflow.com/a/13037661/5052296

更改 build.gradle 中的STL:

    externalNativeBuild {
        cmake {
            arguments '-DANDROID_STL=gnustl_shared'
        }
    }

https://developer.android.com/ndk/guides/cmake

另一个选择:

编辑“include / opencv2 / core / operations.hpp”文件。