Skip to content

Commit 633f251

Browse files
author
Damian Rouson
committed
Installer accepts GCC>6.0.0 without --with... args
1 parent 532223f commit 633f251

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

prerequisites/acceptable_compiler.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
program main
3636
use iso_fortran_env, only : compiler_version
3737
implicit none
38-
print *,(compiler_version() >= "GCC version 6.1.0 ") .and. (compiler_version() < "GCC version 7.0.0 ")
38+
print *,(compiler_version() >= "GCC version 6.1.0 ")
3939
end program

prerequisites/install-functions/find_or_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ find_or_install()
173173

174174
else
175175

176-
info "$this_script: Checking whether $executable in PATH wraps gfortran version >= $(./build.sh -V gcc) and < 7.0.0 ... "
176+
info "$this_script: Checking whether $executable in PATH wraps gfortran version >= $(./build.sh -V gcc)... "
177177
$executable acceptable_compiler.f90 -o acceptable_compiler || true;
178178
$executable print_true.f90 -o print_true || true;
179179
if [[ -f ./acceptable_compiler && -f ./print_true ]]; then

0 commit comments

Comments
 (0)