[問題] 用makefile編譯包含CUDA的動態連結(.so)

作者: hardman1110 (笨小孩)   2018-02-01 21:46:14
開發平台(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
作者: Bencrie   2018-02-01 22:14:00
pdda_cuda.o 也補個 -fPIC
作者: hardman1110 (笨小孩)   2018-02-01 22:27:00
請問大大是要加在哪部份?nvcc 不支援-fPIC如果是加在 .pdda_cuda.o前則是出現一樣錯誤
作者: LPH66 (-6.2598534e+18f)   2018-02-01 23:11:00
稍微咕狗了一下看到這個https://devtalk.nvidia.com/default/topic/395049/
作者: hardman1110 (笨小孩)   2018-02-01 23:17:00
L大~ 所以我得用nvcc 把.cu編成.so再用g++將其跟.cpp編成最後的pdda.so?
作者: LPH66 (-6.2598534e+18f)   2018-02-01 23:52:00
我不確定喔, 你可能要參照其他資料例如 nvcc 的說明等
作者: hardman1110 (笨小孩)   2018-02-02 10:56:00
謝謝L大 在nvcc加入-Xcompiler '-fPIC' -dc即可~~~

Links booklink

Contact Us: admin [ a t ] ucptt.com