Skip to content
Snippets Groups Projects
Commit b5943ae2 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Reintroduce legacy FORTRAN flag in compatibility tests

parent ca0f1428
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ compatibility_stage: ...@@ -92,7 +92,7 @@ compatibility_stage:
- mkdir build_clang16 - mkdir build_clang16
- cd build_clang16 - cd build_clang16
- cp -r ../build/* . - cp -r ../build/* .
- CXX=clang++-16 F77=flang-new-16 ./configure --with-fflags="-O3" --with-include="-I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13" --with-ldflags="-L/usr/lib/llvm-16/lib -L/usr/lib/gcc/x86_64-linux-gnu/13" --disable-openmp - CXX=clang++-16 F77=flang-new-16 ./configure --with-fflags="-O3 -std=legacy" --with-include="-I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13" --with-ldflags="-L/usr/lib/llvm-16/lib -L/usr/lib/gcc/x86_64-linux-gnu/13" --disable-openmp
- make wipe - make wipe
- make -j - make -j
- echo "Running make with flang version 17 and clang version 17..." - echo "Running make with flang version 17 and clang version 17..."
...@@ -101,7 +101,7 @@ compatibility_stage: ...@@ -101,7 +101,7 @@ compatibility_stage:
- mkdir build_clang17 - mkdir build_clang17
- cd build_clang17 - cd build_clang17
- cp -r ../build/* . - cp -r ../build/* .
- CXX=clang++-17 F77=flang-new-17 ./configure --with-fflags="-O3" --with-include="-I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13" --with-ldflags="-L/usr/lib/llvm-17/lib -L/usr/lib/gcc/x86_64-linux-gnu/13" --disable-openmp - CXX=clang++-17 F77=flang-new-17 ./configure --with-fflags="-O3 -std=legacy" --with-include="-I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13" --with-ldflags="-L/usr/lib/llvm-17/lib -L/usr/lib/gcc/x86_64-linux-gnu/13" --disable-openmp
- make wipe - make wipe
- make -j - make -j
#- echo "Running make with Intel ifort and Intel icpx..." #- echo "Running make with Intel ifort and Intel icpx..."
...@@ -123,7 +123,7 @@ compatibility_stage: ...@@ -123,7 +123,7 @@ compatibility_stage:
- cp -r ../build/* . - cp -r ../build/* .
- export LD_LIBRARY_PATH=/opt/intel/oneapi/compiler/latest/lib - export LD_LIBRARY_PATH=/opt/intel/oneapi/compiler/latest/lib
- export PATH=/opt/intel/oneapi/compiler/latest/bin:$PATH - export PATH=/opt/intel/oneapi/compiler/latest/bin:$PATH
- CXX=icpx F77=ifx ./configure --with-fflags="-O3" --disable-openmp - CXX=icpx F77=ifx ./configure --with-fflags="-O3 -std=legacy" --disable-openmp
- make wipe - make wipe
- make -j - make -j
......
...@@ -578,6 +578,7 @@ fi ...@@ -578,6 +578,7 @@ fi
# End of LAPACK checks # End of LAPACK checks
# cuBLAS checks # cuBLAS checks
if [ "x$CUBLAS" != "xno" ]; then if [ "x$CUBLAS" != "xno" ]; then
echo -n "configure: checking for cuBLAS... "
pkg-config --version > /dev/null pkg-config --version > /dev/null
use_pkg_config=$? use_pkg_config=$?
if [ "x${CUDAFLAGS}${CUDALDFLAGS}" = "x" ]; then if [ "x${CUDAFLAGS}${CUDALDFLAGS}" = "x" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment