Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
B
buildblocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Pmodules
buildblocks
Commits
b63493f8
Commit
b63493f8
authored
Jul 02, 2015
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scripts/Compiler/OpenBLAS/build:
- add Intel C support
parent
e46ed0b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
scripts/Compiler/OpenBLAS/build
scripts/Compiler/OpenBLAS/build
+14
-2
No files found.
scripts/Compiler/OpenBLAS/build
View file @
b63493f8
...
...
@@ -2,7 +2,19 @@
source
"$(dirname $0)/../../../lib/libpmodules.bash"
pmodules
.
configure
()
{
case
$
{
COMPILER
}
in
gcc
)
CC
=
'gcc'
;;
intel
)
CC
=
'icc'
;;
*
)
die
3
"Oops: unknown compiler: ${COMPILER}"
;;
esac
cat
<<
EOF
>
"${MODULE_SRCDIR}/make.inc"
SHELL
=
/
bin
/
sh
PLAT
=
...
...
@@ -13,7 +25,7 @@ EOF
cat
<<
EOF
>
"${MODULE_SRCDIR}/Makefile.rule"
VERSION
=
0.2
.
9
TARGET
=
CORE2
CC
=
gcc
CC
=
$
{
CC
}
BINARY
=
64
USE_THREAD
=
0
USE_OPENMP
=
0
...
...
@@ -44,6 +56,6 @@ pmodules.add_to_group 'Compiler'
pmodules
.
set_runtime_dependencies
"${COMPILER}"
pmodules
.
set_build_dependencies
"${COMPILER}"
pmodules
.
set_docfiles
'LICENSE'
'README.md'
pmodules
.
set_supported_compilers
'gcc'
pmodules
.
set_supported_compilers
'gcc'
'intel'
pmodules
.
make_all
pmodules
.
cleanup_src
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