lebeg commented on issue #12727: Error when make -j8 URL: https://github.com/apache/incubator-mxnet/issues/12727#issuecomment-428234900 @D-Roberts you cmake run tells that ``` Could not find OpenBLAS ``` Could you try to install it via ``` brew install openblas brew info openblas ``` And set an environment variable before calling cmake ``` # use 'brew info openblas' output for path export OpenBLAS_HOME=/usr/local/Cellar/openblas/0.3.2 export OpenBLAS_DIR=/usr/local/Cellar/openblas/0.3.2 mkdir build && cd build cmake \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DCMAKE_C_COMPILER_LAUNCHER=ccache \ -DUSE_CPP_PACKAGE=ON \ -DUSE_CUDA=OFF \ -DUSE_OPENMP=ON \ -DUSE_OPENCV=ON \ -DCMAKE_BUILD_TYPE=Debug \ -GNinja .. ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
