开发平台(Platform): (Ex: Win10, Linux, ...)
Unbuntu 16
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
g++ 5.4
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
CUDA: 8 openCV:3.2
问题(Question):
想将自己的函式编译成动态连结给别人使用
在win10 已成功产生其.dll并使用 by vs2017
但在ubuntu上make时却出现错误结果
此时如果在.cpp 加个main 输出程执行档就不会有问题
恳请各位大大指点一下小弟makefile在输出.so时做错了哪步
喂入的资料(Input):
.cpp .cu .h档
预期的正确结果(Expected Output):
成功产生 pdda.so
错误结果(Wrong Output):
/usr/bin/ld: ./pdda_cuda.o: relocation R_X86_64_32 against `.bss' can not be
used when making a shared object; recompile with -fPIC
./pdda_cuda.o: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
程式码(Code):(请善用置底文网页, 记得排版)
https://gist.github.com/ChiFang/70b6ee3ac2d3266373706ac16ff90345
pdda.so: pdda_cuda.o
g++ -fPIC -shared -o pdda.so ./src/pdda.cpp ./pdda_cuda.o -I ./src/
-I/usr/local/cuda/include -L/usr/local/cuda/lib64 -lcuda -lcudart `pkg-config