Commit 89fd381b authored by Sergei Golubchik's avatar Sergei Golubchik

MDEV-25252 main.type_float fails in new buildbot

disable approximate math in icx.
and disable ansi aliasing too (aria loghandler unit tests fail)
parent 353f904e
......@@ -991,3 +991,8 @@ IF(have_C__Werror)
)
SET(CMAKE_REQUIRED_FLAGS ${SAVE_CMAKE_REQUIRED_FLAGS})
ENDIF()
IF(CMAKE_C_COMPILER_ID MATCHES "Intel")
MY_CHECK_AND_SET_COMPILER_FLAG("-no-ansi-alias")
MY_CHECK_AND_SET_COMPILER_FLAG("-fp-model precise")
ENDIF()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment