Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
SWIFT
SWIFTsim
Commits
cdf226c2
Commit
cdf226c2
authored
7 years ago
by
Matthieu Schaller
Browse files
Options
Downloads
Patches
Plain Diff
Make the configure script report about GSL. Add it as a requirement to the install manual.
parent
3e3f7a44
No related branches found
No related tags found
1 merge request
!509
Cosmological time integration
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
INSTALL.swift
+2
-0
2 additions, 0 deletions
INSTALL.swift
configure.ac
+3
-1
3 additions, 1 deletion
configure.ac
with
5 additions
and
1 deletion
INSTALL.swift
+
2
−
0
View file @
cdf226c2
...
...
@@ -112,6 +112,8 @@ before you can build it.
much
like
the
CC
one
.
Use
this
when
your
MPI
compiler
has
a
none
-
standard
name
.
-
GSL
:
To
use
cosmological
time
integration
,
a
version
of
the
GSL
must
be
available
.
-
libtool
:
The
build
system
relies
on
libtool
.
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
3
−
1
View file @
cdf226c2
...
...
@@ -405,8 +405,9 @@ AC_HEADER_STDC
AC_CHECK_LIB(m,sqrt,,AC_MSG_ERROR(something is wrong with the math library!))
# Check for GSL
have_gsl="no"
AC_CHECK_LIB([gslcblas],[cblas_dgemm])
AC_CHECK_LIB([gsl],[gsl_blas_dgemm])
AC_CHECK_LIB([gsl],[gsl_blas_dgemm]
, have_gsl="yes"
)
# Check for pthreads.
AX_PTHREAD([LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
...
...
@@ -1047,6 +1048,7 @@ AC_MSG_RESULT([
- parallel : $have_parallel_hdf5
Metis enabled : $have_metis
FFTW3 enabled : $have_fftw3
GSL enabled : $have_gsl
libNUMA enabled : $have_numa
GRACKLE enabled : $have_grackle
Using tcmalloc : $have_tcmalloc
...
...
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