go test
/tmp/go-build851775728/b343/_x002.o: In function _cgo_9d2d9617deb9_C2func_XGBoosterCreate':
xxxx’
/tmp/go-build/cgo-gcc-prolog:57: undefined reference to
原因:缺少动态链接库
方案一,禁用cgo,如果依赖,是解决不了的
CGO_ENABLED=0 GOOS=linux go test -v ./…
https://stackoverflow.com/questions/53479572/how-to-disable-cgo-for-running-tests
方案二,指定链接库
export CGO_LDFLAGS=”-L${LIB_PATH} -lliba -llibb