Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
slapos
Commits
d09b1946
Commit
d09b1946
authored
Jan 28, 2016
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
openblas: First try with auto-detected target and if it fails try TARGET=GENERIC.
parent
48480c03
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
11 deletions
+17
-11
component/openblas/buildout.cfg
component/openblas/buildout.cfg
+17
-11
No files found.
component/openblas/buildout.cfg
View file @
d09b1946
...
@@ -2,27 +2,33 @@
...
@@ -2,27 +2,33 @@
parts =
parts =
openblas
openblas
extends =
../gcc/buildout.cfg
[openblas]
[openblas]
recipe = slapos.recipe.cmmi
recipe = slapos.recipe.cmmi
url = http://github.com/xianyi/OpenBLAS/archive/v0.2.15.tar.gz
url = http://github.com/xianyi/OpenBLAS/archive/v0.2.15.tar.gz
md5sum = b1190f3d3471685f17cfd1ec1d252ac9
md5sum = b1190f3d3471685f17cfd1ec1d252ac9
configure-command = true
# You can specify more options with openblas:make-ext-options parameter.
build-common-options =
BINARY="$(uname -m | grep -q x86_64 && echo 64 || echo 32)" NO_STATIC=1 USE_OPENMP=1 USE_THREAD=1
# You can specify more options with openblas:build-ext-options parameter.
# Example :
# Example :
# * to build generic binary that supports multiple architecture in one binary
# * to build generic binary that supports multiple architecture in one binary
# DYNAMIC_ARCH=1
# DYNAMIC_ARCH=1
# * to build on not-yet-supported platform
# * to specify target explicitly
# TARGET=GENERIC
# (see https://github.com/xianyi/OpenBLAS/blob/v0.2.15/TargetList.txt )
make-ext-options =
# TARGET=HASWELL
build-ext-options =
# First try with auto-detected target and if it fails try TARGET=GENERIC.
configure-command =
make ${:build-common-options} ${:build-ext-options} || make ${:build-common-options} TARGET=GENERIC
make-options =
make-options =
PREFIX="${buildout:parts-directory}/${:_buildout_section_name_}"
dummy
BINARY="$(uname -m | grep -q x86_64 && echo 64 || echo 32)"
make-targets =
NO_STATIC=1
PREFIX="${buildout:parts-directory}/${:_buildout_section_name_}" install
USE_OPENMP=1
USE_THREAD=1
${:make-ext-options}
environment =
environment =
PATH=${gcc-fortran:location}/bin:%(PATH)s
PATH=${gcc-fortran:location}/bin:%(PATH)s
LD_LIBRARY_PATH=${gcc-fortran:location}/lib:${gcc-fortran:location}/lib64
LD_LIBRARY_PATH=${gcc-fortran:location}/lib:${gcc-fortran:location}/lib64
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment