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/01/29 08:18:25 UTC

[GitHub] nodejh commented on issue #572: blas issue compile issue

nodejh commented on issue #572: blas issue compile issue
URL: https://github.com/apache/incubator-mxnet/issues/572#issuecomment-269853034
 
 
   First install `openblas`
   
   ```
   $ brew install --fresh -vd openblas
   ......
   macOS already provides this software and installing another version in
   parallel can cause all kinds of trouble.
   
   Generally there are no consequences of this for you. If you build your
   own software and it requires this formula, you'll need to add to your
   build variables:
   
       LDFLAGS:  -L/usr/local/opt/openblas/lib
       CPPFLAGS: -I/usr/local/opt/openblas/include
   
   ==> Summary
   ?  /usr/local/Cellar/openblas/0.2.18_2: 20 files, 41.8M, built in 12 minutes 33 seconds
   ```
   
   Then Add `ADD_LDFLAGS` and `ADD_CFLAGS` to config.mk:
   
   ```
   USE_BLAS = apple
   ADD_LDFLAGS = -I/usr/local/opt/openblas/lib
   ADD_CFLAGS =  -I/usr/local/opt/openblas/include
   ```
   
   

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