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 2017/11/16 12:55:04 UTC

[GitHub] larroy commented on issue #8667: Compiler/linker error while trying to build from source on Mac OSX Sierra 10.12.6.

larroy commented on issue #8667: Compiler/linker error while trying to build from source on Mac OSX Sierra 10.12.6.
URL: https://github.com/apache/incubator-mxnet/issues/8667#issuecomment-344914455
 
 
   Hi
   
   try to build with CMake and without OpenCV:
   
   ```bash
   $ cat build.sh
   #!/bin/bash
   set -e
   set -x
   mkdir -p build && cd build
   cmake -DUSE_CUDA=OFF -DUSE_OPENMP=OFF -DUSE_OPENCV=OFF -DCMAKE_BUILD_TYPE=Debug -GNinja ..
   ninja
   cd ..
   cp build/libmxnet.so python/mxnet
   cd python
   pip install -e .
   ```

----------------------------------------------------------------
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