Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SPINS_main
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SPINS
SPINS_main
Commits
66dfa614
Commit
66dfa614
authored
7 months ago
by
Derek Steinmoeller
Browse files
Options
Downloads
Patches
Plain Diff
Use cmake build for blitz++.
parent
fe7e85a6
No related branches found
Branches containing commit
No related tags found
1 merge request
!19
Use cmake build for blitz++.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
make_deps.sh
+4
-5
4 additions, 5 deletions
make_deps.sh
with
4 additions
and
5 deletions
make_deps.sh
+
4
−
5
View file @
66dfa614
...
...
@@ -75,11 +75,10 @@ else
fi
(
tar
-xzvf
blitz_1.0.2.tar.gz
>
/dev/null
)
||
(
echo
"Untar of Blitz FAILED"
;
exit
1
)
;
pushd
blitz-1.0.2
(
autoreconf
-vif
&&
./configure
--prefix
=
"
$CWD
"
--disable-fortran
"
${
BLITZ_OPTIONS
}
"
>
/dev/null
)
&&
\
(
make lib
>
/dev/null
)
&&
\
pushd
blitz
&&
(
make
install
>
/dev/null
)
&&
popd
&&
\
pushd
lib
&&
(
make
install
>
/dev/null
)
&&
popd
&&
\
pushd
random
&&
(
make
install
>
/dev/null
)
&&
popd
&&
\
mkdir
build
&&
pushd
build
&&
\
(
cmake ..
-DCMAKE_INSTALL_PREFIX
=
"
$CWD
"
>
/dev/null
)
&&
\
(
make
-j4
>
/dev/null
)
&&
\
(
make
install
>
/dev/null
)
&&
popd
popd
if
[
$?
-ne
0
]
;
then
echo
"Could not compile/install Blitz"
;
exit
1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment