Skip to content
Snippets Groups Projects
Commit 3bab8c6b authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

New --enable-fortran-blas flag.
parent 2b45fa89
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,8 @@ AC_CONFIG_FILES([Makefile gnu-compat/Makefile ...@@ -29,6 +29,8 @@ AC_CONFIG_FILES([Makefile gnu-compat/Makefile
add_ons/libalbas/tests/Makefile add_ons/libalbas/tests/Makefile
add_ons/block_solve/Makefile add_ons/block_solve/Makefile
add_ons/block_solve/src/Makefile add_ons/block_solve/src/Makefile
add_ons/block_solve/demo/Makefile
add_ons/block_solve/demo/2d/Makefile
add_ons/geomview/Makefile add_ons/geomview/Makefile
add_ons/grape/Makefile add_ons/grape/Makefile
add_ons/grape/mesh/Makefile add_ons/grape/mesh/Makefile
...@@ -149,6 +151,12 @@ AC_ARG_ENABLE([dim-of-world], ...@@ -149,6 +151,12 @@ AC_ARG_ENABLE([dim-of-world],
;; ;;
esac]) esac])
ALBERTA_ENABLE_FLAG([fortran-blas],
[Use BLAS routines for some basis linear algebra stuff.],
[disabled],
[USE_F77_BLAS],
[DEFINE SUBST COND])
ALBERTA_ENABLE_FLAG([vector-basis-functions], ALBERTA_ENABLE_FLAG([vector-basis-functions],
[Disable support for vector-valued basis functions. If you leave this enabled [Disable support for vector-valued basis functions. If you leave this enabled
ALBERTA supports DIM_OF_WORLD-valued basis functions and scalar basis ALBERTA supports DIM_OF_WORLD-valued basis functions and scalar basis
...@@ -310,7 +318,7 @@ if test "${BUILD_DEBUG_LIBS}" = "1"; then ...@@ -310,7 +318,7 @@ if test "${BUILD_DEBUG_LIBS}" = "1"; then
fi fi
fi fi
AC_ARG_VAR([ALBERTA_DEBUG_CXXFLAGS], AC_ARG_VAR([ALBERTA_DEBUG_CXXFLAGS],
[C++ cCompiler-flags used to create the debug-enabled libraries]) [C++ Compiler-flags used to create the debug-enabled libraries])
fi fi
# #
...@@ -598,10 +606,23 @@ if test "$ALBERTA_EFENCE" = 0 -a -n "$EFENCE_LIB"; then ...@@ -598,10 +606,23 @@ if test "$ALBERTA_EFENCE" = 0 -a -n "$EFENCE_LIB"; then
ALBERTA_EFENCE=1 ALBERTA_EFENCE=1
fi fi
#
# OpenMP
#
ALBERTA_OPENMP
if test -n "${OPENMP_CFLAGS}"; then
ALBERTA_OPTIMIZE_CFLAGS="${ALBERTA_OPTIMIZE_CFLAGS} ${OPENMP_CFLAGS}"
ALBERTA_DEBUG_CFLAGS="${ALBERTA_DEBUG_CFLAGS} ${OPENMP_CFLAGS}"
ALBERTA_PROFILE_CFLAGS="${ALBERTA_PROFILE_CFLAGS} ${OPENMP_CFLAGS}"
ALBERTA_FFLAGS="${ALBERTA_FFLAGS} ${OPENMP_CFLAGS}"
LDFLAGS="${LDFLAGS} `echo ${OPENMP_CFLAGS}|sed -e 's/-/-XCClinker -/g'`"
fi
# #
# Install libtool.alberta for shared libraries? # Install libtool.alberta for shared libraries?
# #
ALBERTA_ENABLE_FLAG([install-libtool], [disable installation of libtool.alberta], 1) ALBERTA_ENABLE_FLAG([install-libtool],
[disable installation of libtool.alberta], 1)
# building of all versions is enabled by default, but can be # building of all versions is enabled by default, but can be
# disabled using --disable-DOW-dimension switches (the macros # disabled using --disable-DOW-dimension switches (the macros
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment