summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/Intel-C.cmake
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2020-05-22 14:39:52 (GMT)
committerRobert Maynard <robert.maynard@kitware.com>2020-06-09 20:20:53 (GMT)
commit644d3b86ebb4be108172765e96251162e2537344 (patch)
tree88b4d602c6883f336b335c6fde8bdb8a562c35db /Modules/Compiler/Intel-C.cmake
parentc08ee5e74e4ee19989a99a405936a1cb61d33534 (diff)
downloadCMake-644d3b86ebb4be108172765e96251162e2537344.zip
CMake-644d3b86ebb4be108172765e96251162e2537344.tar.gz
CMake-644d3b86ebb4be108172765e96251162e2537344.tar.bz2
C: Compile when possible with explicit `C` language flag set
Issue: #14516, #20716
Diffstat (limited to 'Modules/Compiler/Intel-C.cmake')
-rw-r--r--Modules/Compiler/Intel-C.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Compiler/Intel-C.cmake b/Modules/Compiler/Intel-C.cmake
index ec3bfd8..322f63d 100644
--- a/Modules/Compiler/Intel-C.cmake
+++ b/Modules/Compiler/Intel-C.cmake
@@ -28,6 +28,8 @@ if("x${CMAKE_C_SIMULATE_ID}" STREQUAL "xMSVC")
else()
+ set(CMAKE_C_COMPILE_OPTIONS_EXPLICIT_LANGUAGE -x c)
+
if (NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 15.0.0)
set(CMAKE_C11_STANDARD_COMPILE_OPTION "-std=c11")
set(CMAKE_C11_EXTENSION_COMPILE_OPTION "-std=gnu11")