From 93234ca963479b5b6b1640998a33e1ef89fb8cb4 Mon Sep 17 00:00:00 2001 From: Perenon R Date: Thu, 14 May 2020 15:16:54 +0200 Subject: [PATCH] CI builds now 64 bits --- BuildServer/Unix/build.sh | 2 +- BuildServer/Windows/build.bat | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BuildServer/Unix/build.sh b/BuildServer/Unix/build.sh index bbb662f6..7e53e7cf 100755 --- a/BuildServer/Unix/build.sh +++ b/BuildServer/Unix/build.sh @@ -5,5 +5,5 @@ rm -Rf build_${compiler##/*} mkdir build_${compiler##/*} cd build_${compiler##/*} -cmake -D USE_HDF=ON -D CMAKE_Fortran_COMPILER=${compiler} -D HDF5_INCLUDE_PATH=${HDF5_INCLUDE_PATH} .. +cmake -D ARCH32=OFF -D USE_HDF=ON -D CMAKE_Fortran_COMPILER=${compiler} -D HDF5_INCLUDE_PATH=${HDF5_INCLUDE_PATH} .. cmake --build . \ No newline at end of file diff --git a/BuildServer/Windows/build.bat b/BuildServer/Windows/build.bat index d20c3cc8..bd10a551 100755 --- a/BuildServer/Windows/build.bat +++ b/BuildServer/Windows/build.bat @@ -6,9 +6,9 @@ mkdir build_%compiler% cd build_%compiler% if %compiler% neq gfortran ( -cmake -G "NMake Makefiles" -D USE_HDF=ON -D CMAKE_Fortran_COMPILER=%compiler% -D HDF5_INCLUDE_PATH=%HDF5_INCLUDE_PATH% .. +cmake -G "NMake Makefiles" -D ARCH32=OFF -D USE_HDF=ON -D CMAKE_Fortran_COMPILER=%compiler% -D HDF5_INCLUDE_PATH=%HDF5_INCLUDE_PATH% .. ) else ( -cmake -G "MinGW Makefiles" -D USE_HDF=ON -D CMAKE_Fortran_COMPILER=%compiler% -D HDF5_INCLUDE_PATH=%HDF5_INCLUDE_PATH% .. +cmake -G "MinGW Makefiles" -D ARCH32=OFF -D USE_HDF=ON -D CMAKE_Fortran_COMPILER=%compiler% -D HDF5_INCLUDE_PATH=%HDF5_INCLUDE_PATH% .. ) cmake --build . \ No newline at end of file -- GitLab