报错信息:
dyld: Library not loaded: /usr/local/lib/libgomp.1.dylib
Referenced from: /Users/qying/Documents/macosx_10.7_Intel_64/AlphaSim
Reason: image not found
Trace/BPT trap: 5
解决方法:
brew install gcc 即可
原因分析:
LightGBM依赖OpenMP来编译,但是它不支持苹果的Clang,用gcc/g++替代
mac安装过程
brew install cmake
brew install gcc --without-multilib
git clone --recursive https://github.com/Microsoft/LightGBM
cd LightGBM
mkdir build
cd build
cmake ..
make -j
可见我用的方法brew install gcc安装了多余的lib包,难怪有300M,懒得删了,万一以后用的到呢。