From 96ada1dd54d6b3a779fbbb23d1e90779761bf839 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Thu, 14 Nov 2024 11:06:05 +0000 Subject: [PATCH] COMP: Intel: compilation rule. Fixes #3259 --- wmake/rules/linux64Icc/c++ | 2 +- wmake/rules/linux64Icx/c++ | 2 +- wmake/rules/linuxIcc/c++ | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wmake/rules/linux64Icc/c++ b/wmake/rules/linux64Icc/c++ index 6a4b12d6e18..70ad8973c92 100644 --- a/wmake/rules/linux64Icc/c++ +++ b/wmake/rules/linux64Icc/c++ @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ include $(GENERAL_RULES)/Icc/c++ -c++ARCH := -pthread -fp-trap=common -fp-model precise +c++ARCH := -pthread -fp-trap=common -fp-model=precise ifneq (,$(strip $(WM_COMPILE_OPTION))) sinclude $(DEFAULT_RULES)/c++$(WM_COMPILE_OPTION) diff --git a/wmake/rules/linux64Icx/c++ b/wmake/rules/linux64Icx/c++ index 0b834e990af..315ee1b5091 100644 --- a/wmake/rules/linux64Icx/c++ +++ b/wmake/rules/linux64Icx/c++ @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ include $(GENERAL_RULES)/Icx/c++ -c++ARCH := -fp-model precise +c++ARCH := -fp-model=precise ifneq (,$(strip $(WM_COMPILE_OPTION))) sinclude $(DEFAULT_RULES)/c++$(WM_COMPILE_OPTION) diff --git a/wmake/rules/linuxIcc/c++ b/wmake/rules/linuxIcc/c++ index a58627a96d9..20e0cb46f8f 100644 --- a/wmake/rules/linuxIcc/c++ +++ b/wmake/rules/linuxIcc/c++ @@ -1,7 +1,7 @@ #------------------------------------------------------------------------------ include $(GENERAL_RULES)/Icc/c++ -c++ARCH := -pthread -fp-trap=common -fp-model precise +c++ARCH := -pthread -fp-trap=common -fp-model=precise ifneq (,$(strip $(WM_COMPILE_OPTION))) sinclude $(DEFAULT_RULES)/c++$(WM_COMPILE_OPTION) -- GitLab