【问题标题】:Convert a gcc command to CMake for android ndk将 gcc 命令转换为 CMake for android ndk
【发布时间】:2023-03-04 10:30:02
【问题描述】:

我需要添加一个可以用gcc编译的c项目如下

gcc  -I/usr/include/epic5.1 -I/usr/include/i386-linux-gnu/epic5.1 -I./smproject/ -o code code.c ./smproject/smlib.so -lepic5.1

我已将 code.c 文件内容移动到我的 Android NDK .cpp 文件 (src/main/cpp/native-lib.cpp) 并将 smproject 目录中的所有文件移动到 src/main/cpp/smproject/ 目录

这是我的 CMakeList.txt 内容

# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)

# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.
include_directories( /usr/include/epic5.1 )
include_directories( /usr/include/i386-linux-gnu/epic5.1 )
include_directories( src/main/cpp )

set_target_properties( delorean PROPERTIES IMPORTED_LOCATION
                       src/main/cpp/smlib.so
                        )
add_library( smlib STATIC IMPORTED )

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).
             src/main/cpp/native-lib.cpp
             )

# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.

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)

# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, pre-built third-party libraries, or system libraries.

target_link_libraries( # Specifies the target library.
                       native-lib

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

我尝试关注Android NDK, CMake with other libraries,但这对我不起作用,它开始抛出 gradle 错误

尝试在build.gradle 文件中关注

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "in.etpg.sampleapp"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        externalNativeBuild {
            cmake {
                cppFlags "-I/usr/include/epic5.1 -I/usr/include/i386-linux-gnu/epic5.1 -lepic5.1 -frtti -fexceptions"
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    externalNativeBuild {
        cmake {
            path "CMakeLists.txt"
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    testCompile 'junit:junit:4.12'
}

错误

Error:cannot find -lepic5.1
Error:error: linker command failed with exit code 1 (use -v to see
Warning:warning: -lepic5.1: 'linker' input unused
Error:A problem occurred configuring project ':app'.
> executing external native build for cmake /Users/laptop.user/AndroidStudioProjects/SampleApp/app/CMakeLists.txt

【问题讨论】:

  • 您遇到什么样的错误?请至少发布错误消息。
  • 我添加了错误信息
  • 在某些时候你可能需要告诉 gradle 在哪里可以找到这些库 (epic5.1)。
  • 如何在 gradle 中做到这一点
  • 不熟悉gradle。但请检查:discuss.gradle.org/t/…

标签: android c++ c gcc android-ndk


【解决方案1】:

你只需要在你的模块build.gradle中添加一些东西,像这样

ndk {
    moduleName "code"
    cFlags "-I/usr/include/epic5.1 -I/usr/include/i386-linux-gnu/epic5.1 -lepic5.1 -frtti -fexceptions"
    ldLibs "log"
}

并将源文件放在main/jni中。

也许,您需要将cFlags 更改为cppFlags,但我建议您搜索有关此的更多信息,该建议基于您拥有-fnoexceptions 标志的事实,该标志适用于c++。

您当然需要libepic5.1.so 二进制文件才能使用它进行编译,如果您可以添加它的源代码,它就可以工作。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-06-06
    • 2017-09-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-04-13
    相关资源
    最近更新 更多