2017-04-26 7 views
10

मैं के रूप मेंमैं अपने एंड्रॉयड NDK .cpp फ़ाइल (src को <code>code.c</code> फ़ाइलें सामग्री स्थानांतरित कर दिया एंड्रॉयड NDK

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 

इस प्रकार एसी परियोजना जो gcc साथ संकलित किया जा सकता जोड़ने की जरूरत के लिए CMake करने के लिए एक जीसीसी आदेश कन्वर्ट/मुख्य/सीपीपी/देशी-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 त्रुटि

फेंकने शुरू कर दिया

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 
+0

आपको किस तरह की त्रुटियां मिल रही हैं? कम से कम त्रुटि संदेश पोस्ट करें। – jpo38

+0

मैंने त्रुटि जानकारी –

+1

जोड़ा है किसी बिंदु पर आपको पुस्तकालयों को ढूंढने के लिए धीरे-धीरे कहने की आवश्यकता हो सकती है (epic5.1)। – jpo38

उत्तर

4

आप बस कुछ जोड़ना होगा build.gradle फ़ाइल में निम्न की कोशिश की आपके मॉड्यूल 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" 
} 

और स्रोत फ़ाइलों को मुख्य/jni पर रखें।

शायद, आप cppFlags को cFlags बदलने की जरूरत है, लेकिन मैं सुझाव है कि आप, सुझाव सच है कि आप -fnoexceptions झंडा है, जो ग के लिए ++ है कि पर आधारित है इस बारे में अधिक जानकारी के लिए खोज।

आपको संकलन के लिए इसका उपयोग करने के लिए libepic5.1.so बाइनरी की आवश्यकता है, यदि आप इसका स्रोत कोड जोड़ सकते हैं तो यह काम करेगा।

संबंधित मुद्दे