thundergbm
thundergbm copied to clipboard
Static compilation
I need to build ThunderGBM statically. How I can do this?
Hi @mahi045, modify the 9th line in CMakefile.txt and change the word SHARED
to STATIC
. But I am not sure if this can satisfy your needs.
Thanks.
@Kurt-Liuhf
Thanks for your response.
This change builds thundergbm library statically. (i.e. previously it was libthundergbm.so
, currently it is libthundergbm.a
).
I need to build thundergbm-train
and thundergbm-predict
executables statically so that if I transfer the binaries to a computing cluster, they run smoothly there.