Skip to content

Commit 8131246

Browse files
committed
complete merge
1 parent b627120 commit 8131246

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

src/fpm/manifest/feature.f90

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,7 @@ module fpm_manifest_feature
4040
use fpm_error, only: error_t, fatal_error, syntax_error
4141
use fpm_environment, only: OS_UNKNOWN, OS_LINUX, OS_MACOS, OS_WINDOWS, OS_CYGWIN, OS_SOLARIS, &
4242
OS_FREEBSD, OS_OPENBSD, OS_ALL, OS_NAME, match_os_type
43-
use fpm_compiler, only: compiler_enum, compiler_id_name, match_compiler_type, &
44-
id_unknown, id_gcc, id_f95, id_caf, &
45-
id_intel_classic_nix, id_intel_classic_mac, id_intel_classic_windows, &
46-
id_intel_llvm_nix, id_intel_llvm_windows, id_intel_llvm_unknown, &
47-
id_pgi, id_nvhpc, id_nag, id_flang, id_flang_new, id_f18, &
48-
id_ibmxl, id_cray, id_lahey, id_lfortran, id_all
43+
use fpm_compiler, only: compiler_enum, compiler_id_name, match_compiler_type, id_all
4944
use fpm_strings, only: string_t, lower, operator(==)
5045
use tomlf, only: toml_table, toml_array, toml_key, toml_stat
5146
use fpm_toml, only: get_value, len, serializable_t, set_value, set_string, set_list, add_table, &

src/fpm/manifest/feature_collection.f90

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ module fpm_manifest_feature_collection
1515
id_unknown, id_gcc, id_f95, id_caf, &
1616
id_intel_classic_nix, id_intel_classic_mac, id_intel_classic_windows, &
1717
id_intel_llvm_nix, id_intel_llvm_windows, id_intel_llvm_unknown, &
18-
id_pgi, id_nvhpc, id_nag, id_flang, id_flang_new, id_f18, &
19-
id_ibmxl, id_cray, id_lahey, id_lfortran, id_all
18+
id_pgi, id_nvhpc, id_nag, id_flang, id_lahey, id_lfortran, id_all
2019
use fpm_strings, only: string_t, lower, operator(==), split, str
2120
use tomlf, only: toml_table, toml_array, toml_key, toml_stat
2221
use fpm_toml, only: get_value, len, serializable_t, set_value, set_string, set_list, add_table, &

src/fpm/manifest/profiles.f90

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@ module fpm_manifest_profile
5353
OS_CYGWIN, OS_SOLARIS, OS_FREEBSD, OS_OPENBSD, OS_NAME, OS_ALL, &
5454
validate_os_name, match_os_type
5555
use fpm_compiler, only: compiler_enum, compiler_id_name, match_compiler_type, &
56-
id_unknown, id_gcc, id_f95, id_caf, validate_compiler_name, &
57-
id_intel_classic_nix, id_intel_classic_mac, id_intel_classic_windows, &
58-
id_intel_llvm_nix, id_intel_llvm_windows, id_intel_llvm_unknown, &
59-
id_pgi, id_nvhpc, id_nag, id_flang, id_flang_new, id_f18, &
60-
id_ibmxl, id_cray, id_lahey, id_lfortran, id_all
56+
validate_compiler_name
6157
use fpm_filesystem, only: join_path
6258
implicit none
6359
public :: profile_config_t, new_profile, new_profiles, find_profile, DEFAULT_COMPILER

0 commit comments

Comments
 (0)