gpt4 book ai didi

c++ - JNI 使用静态 NTL 库构建共享库

转载 作者:行者123 更新时间:2023-11-30 01:41:20 24 4
gpt4 key购买 nike

我为 JNI 编写了 C++ 代码,然后构建了共享库。此共享库使用 NTL 静态库。但它会出现以下错误。

编译器配置和错误(Netbeans):

g++ -c -O2 -s -I/usr/lib/jvm/default-java/include -I/usr/lib/jvm/default-java/include/linux      
-I/usr/local/include/NTL -fPIC -MMD -MP -MF "build/Debug/GNU-Linux/ntl4java.o.d"
-o build/Debug/GNU-Linux/ntl4java.o ntl4java.cpp
mkdir -p dist/Debug/GNU-Linux
g++ -o dist/Debug/GNU-Linux/libntl4java.so build/Debug/GNU-Linux/ntl4java.o -lgmp -lntl
-shared -s -fPIC
/usr/bin/ld: //usr/local/lib/libntl.a(lip.o): relocation R_X86_64_32 against .rodata.str1.1'
can not be used when making a shared object; recompile with -fPIC
//usr/local/lib/libntl.a: error adding symbols: Bad value

ntl4java.cpp

#include <NTLmethod.h>
#include <NTL/ZZ_pX.h>
#include <string.h>

using namespace std;
using namespace NTL;

JNIEXPORT jstring JNICALL Java_NTLmethod_mult(JNIEnv *env, jclass obj, jstring input) {
const char *str = env->GetStringUTFChars(input, 0);
ZZ p;
char c[128];
strcpy(c, str);
env->ReleaseStringUTFChars(input, str);

return env->NewStringUTF(c);
}
int main(){
return 0;
}

NTL方法.h

#include <jni.h>

#ifndef _Included_NTLmethod
#define _Included_NTLmethod
#ifdef __cplusplus
extern "C" {
#endif

JNIEXPORT jstring JNICALL Java_NTLmethod_mult(JNIEnv *, jclass, jstring);

#ifdef __cplusplus
}
#endif
#endif

最佳答案

因为您对共享库使用了 -fPIcflags,所以您也需要使用 -fPIcflags重新编译 NTL。

关于c++ - JNI 使用静态 NTL 库构建共享库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41440140/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com