Skip to content

Commit

Permalink
remove further standard-semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
perazz committed Jun 24, 2024
1 parent 58c803f commit 5b78769
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/fpm/manifest/profiles.f90
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ function get_default_profiles(error) result(default_profiles)
& new_profile('debug', &
& 'ifort', &
& OS_ALL, &
& flags = ' -warn all -check all -error-limit 1 -O0 -g -assume byterecl -traceback', &
& flags = ' -warn all -check all -error-limit 1 -O0 -g -assume byterecl -traceback', &
& is_built_in=.true.), &
& new_profile('debug', &
& 'ifort', &
Expand All @@ -816,7 +816,7 @@ function get_default_profiles(error) result(default_profiles)
& new_profile('debug', &
& 'ifx', &
& OS_ALL, &
& flags = ' -warn all -check all -error-limit 1 -O0 -g -assume byterecl -traceback', &
& flags = ' -warn all -check all -error-limit 1 -O0 -g -assume byterecl -traceback', &
& is_built_in=.true.), &
& new_profile('debug', &
& 'ifx', &
Expand Down
22 changes: 6 additions & 16 deletions src/fpm_compiler.F90
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,7 @@ subroutine get_release_compile_flags(id, flags)
flag_intel_limit//&
flag_intel_pthread//&
flag_intel_nogen//&
flag_intel_byterecl//&
flag_intel_standard_compliance
flag_intel_byterecl

case(id_intel_classic_mac)
flags = &
Expand All @@ -320,8 +319,7 @@ subroutine get_release_compile_flags(id, flags)
flag_intel_limit//&
flag_intel_pthread//&
flag_intel_nogen//&
flag_intel_byterecl//&
flag_intel_standard_compliance
flag_intel_byterecl

case(id_intel_classic_windows)
flags = &
Expand All @@ -331,8 +329,7 @@ subroutine get_release_compile_flags(id, flags)
flag_intel_limit_win//&
flag_intel_pthread_win//&
flag_intel_nogen_win//&
flag_intel_byterecl_win//&
flag_intel_standard_compliance_win
flag_intel_byterecl_win

case(id_intel_llvm_nix)
flags = &
Expand All @@ -342,8 +339,7 @@ subroutine get_release_compile_flags(id, flags)
flag_intel_limit//&
flag_intel_pthread//&
flag_intel_nogen//&
flag_intel_byterecl//&
flag_intel_standard_compliance
flag_intel_byterecl

case(id_intel_llvm_windows)
flags = &
Expand All @@ -353,8 +349,7 @@ subroutine get_release_compile_flags(id, flags)
flag_intel_limit_win//&
flag_intel_pthread_win//&
flag_intel_nogen_win//&
flag_intel_byterecl_win//&
flag_intel_standard_compliance_win
flag_intel_byterecl_win

case(id_nag)
flags = &
Expand Down Expand Up @@ -418,7 +413,6 @@ subroutine get_debug_compile_flags(id, flags)
flag_intel_limit//&
flag_intel_debug//&
flag_intel_byterecl//&
flag_intel_standard_compliance//&
flag_intel_backtrace

case(id_intel_classic_mac)
Expand All @@ -428,7 +422,6 @@ subroutine get_debug_compile_flags(id, flags)
flag_intel_limit//&
flag_intel_debug//&
flag_intel_byterecl//&
flag_intel_standard_compliance//&
flag_intel_backtrace
case(id_intel_classic_windows)
flags = &
Expand All @@ -437,7 +430,6 @@ subroutine get_debug_compile_flags(id, flags)
flag_intel_limit_win//&
flag_intel_debug_win//&
flag_intel_byterecl_win//&
flag_intel_standard_compliance_win//&
flag_intel_backtrace_win
case(id_intel_llvm_nix)
flags = &
Expand All @@ -446,16 +438,14 @@ subroutine get_debug_compile_flags(id, flags)
flag_intel_limit//&
flag_intel_debug//&
flag_intel_byterecl//&
flag_intel_standard_compliance//&
flag_intel_backtrace
case(id_intel_llvm_windows)
flags = &
flag_intel_warn_win//&
flag_intel_check_win//&
flag_intel_limit_win//&
flag_intel_debug_win//&
flag_intel_byterecl_win//&
flag_intel_standard_compliance_win
flag_intel_byterecl_win
case(id_nag)
flags = &
flag_nag_debug//&
Expand Down

0 comments on commit 5b78769

Please sign in to comment.