diff options
| author | 2022-12-10 07:08:46 +0000 | |
|---|---|---|
| committer | 2022-12-10 07:08:46 +0000 | |
| commit | 8f84e725c63bb47b5bf02d11aefaa47be2675c30 (patch) | |
| tree | 99f75d579dff6187a714829cf5deb4a580ccc687 /make/test/compiler_info.cpp | |
| parent | Remove test-build now its no longer used. (diff) | |
Remove support for the old deprecated Intel compiler.
Diffstat (limited to 'make/test/compiler_info.cpp')
| -rw-r--r-- | make/test/compiler_info.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/make/test/compiler_info.cpp b/make/test/compiler_info.cpp index 7c5268dad..36b4a3450 100644 --- a/make/test/compiler_info.cpp +++ b/make/test/compiler_info.cpp @@ -19,10 +19,7 @@ #include <iostream> -#if defined __INTEL_COMPILER // Also defines __GNUC__ -# define INSPIRCD_COMPILER_NAME "Intel" -# define INSPIRCD_COMPILER_VERSION (__INTEL_COMPILER / 100) << '.' << (__INTEL_COMPILER % 100) -#elif defined __INTEL_CLANG_COMPILER // Also defines __clang__ +#if defined __INTEL_CLANG_COMPILER // Also defines __clang__ # define INSPIRCD_COMPILER_NAME "IntelClang" # define INSPIRCD_COMPILER_VERSION (__INTEL_CLANG_COMPILER / 10000) << '.' << ((__INTEL_CLANG_COMPILER % 10000) / 100) #elif defined __clang__ // Also defines __GNUC__ |
