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 2019/07/17 04:54:57 UTC

[GitHub] [incubator-mxnet] cyrusbehr commented on issue #15327: Could not find OpenBlas - docker cross compile armv7

cyrusbehr commented on issue #15327: Could not find OpenBlas - docker cross compile armv7
URL: https://github.com/apache/incubator-mxnet/issues/15327#issuecomment-512101678
 
 
   I resolved the issue by adding the following steps.
   
   ```
   # OpenBLAS
   RUN cd ~ && \
   git clone --recursive -b v0.2.20 https://github.com/xianyi/OpenBLAS.git && \
   cd OpenBLAS && \
   export HOSTCC="gcc" && \
   export TARGET="ARMV7" && \
   make -j8 &&\
   sudo make PREFIX=${CROSS_ROOT} install
   
   ENV OpenBLAS_HOME=${CROSS_ROOT}
   ENV OpenBLAS_DIR=${CROSS_ROOT}
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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