Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
cdf226c2
Commit
cdf226c2
authored
Jan 25, 2018
by
Matthieu Schaller
Browse files
Make the configure script report about GSL. Add it as a requirement to the install manual.
parent
3e3f7a44
Changes
2
Hide whitespace changes
Inline
Side-by-side
INSTALL.swift
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
.
...
...
configure.ac
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
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment