summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicențiu Ciorbaru <cvicentiu@gmail.com>2021-02-03 18:16:03 +0200
committerVicențiu Ciorbaru <cvicentiu@gmail.com>2021-02-03 18:18:00 +0200
commit22c4a4a791e57a7071878043eba905cb96e086db (patch)
tree4c0c664ea50388adcb41e999010ce85713566296
parent63bee9c8e7a55435e5335ef1ff06dcee561be41d (diff)
downloadmariadb-git-bb-10.5-vicentiu-intel-warnings.tar.gz
-rw-r--r--cmake/build_configurations/mysql_release.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmake/build_configurations/mysql_release.cmake b/cmake/build_configurations/mysql_release.cmake
index ee8d00bc664..339d7c99bde 100644
--- a/cmake/build_configurations/mysql_release.cmake
+++ b/cmake/build_configurations/mysql_release.cmake
@@ -216,11 +216,11 @@ IF(UNIX)
# Linux flags
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
IF(CMAKE_C_COMPILER_ID MATCHES "Intel")
- SET(COMMON_C_FLAGS "-static-intel -static-libgcc -g -mp -restrict")
- SET(COMMON_CXX_FLAGS "-static-intel -static-libgcc -g -mp -restrict -fno-exceptions")
+ SET(COMMON_C_FLAGS "-static-intel -static-libgcc -g -restrict -wd3179 -wd188")
+ SET(COMMON_CXX_FLAGS "-static-intel -static-libgcc -g -restrict -wd3179 -wd188")
IF(CMAKE_SYSTEM_PROCESSOR MATCHES "ia64")
- SET(COMMON_C_FLAGS "${COMMON_C_FLAGS} -no-ftz -no-prefetch")
- SET(COMMON_CXX_FLAGS "${COMMON_CXX_FLAGS} -no-ftz -no-prefetch")
+ SET(COMMON_C_FLAGS "${COMMON_C_FLAGS} -no-ftz -no-prefetch -wd3179")
+ SET(COMMON_CXX_FLAGS "${COMMON_CXX_FLAGS} -no-ftz -no-prefetch -wd3179")
ENDIF()
SET(CMAKE_C_FLAGS_DEBUG "${COMMON_C_FLAGS}")
SET(CMAKE_CXX_FLAGS_DEBUG "${COMMON_CXX_FLAGS}")