Skip to content

Commit 89fd381

Browse files
committed
MDEV-25252 main.type_float fails in new buildbot
disable approximate math in icx. and disable ansi aliasing too (aria loghandler unit tests fail)
1 parent 353f904 commit 89fd381

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

configure.cmake

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -991,3 +991,8 @@ IF(have_C__Werror)
991991
)
992992
SET(CMAKE_REQUIRED_FLAGS ${SAVE_CMAKE_REQUIRED_FLAGS})
993993
ENDIF()
994+
995+
IF(CMAKE_C_COMPILER_ID MATCHES "Intel")
996+
MY_CHECK_AND_SET_COMPILER_FLAG("-no-ansi-alias")
997+
MY_CHECK_AND_SET_COMPILER_FLAG("-fp-model precise")
998+
ENDIF()

0 commit comments

Comments
 (0)