Commit 691a3490f667ed36f136d7747f98eaea1f68f0ca

Authored by William Daniau
0 parents
Exists in master and in 1 other branch update

Initial commit for building openblas

Showing 3 changed files with 12 additions and 0 deletions Side-by-side Diff

... ... @@ -0,0 +1,6 @@
  1 +
  2 +all:
  3 + ( ./build.sh )
  4 +
  5 +clean:
  6 + ( rm -rf OpenBLAS-0.2.14 )
OpenBLAS-0.2.14.tar.gz
No preview for this file type
... ... @@ -0,0 +1,6 @@
  1 +#!/bin/bash
  2 +
  3 +tar xzf OpenBLAS-0.2.14.tar.gz
  4 +cd OpenBLAS-0.2.14
  5 +make DYNAMIC_ARCH=1 USE_THREAD=1 USE_OPENMP=1 LIBNAMESUFFIX=lxsd NUM_THREADS=64
  6 +make PREFIX=$BTREE LIBNAMESUFFIX=lxsd install