You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/10/09 15:20:44 UTC

[GitHub] lebeg edited a comment on issue #12727: Error when make -j8

lebeg edited a comment on issue #12727: Error when make -j8 
URL: https://github.com/apache/incubator-mxnet/issues/12727#issuecomment-428234900
 
 
   @D-Roberts your 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:
users@infra.apache.org


With regards,
Apache Git Services