Skip to content

Commit

Permalink
MDEV-25252 main.type_float fails in new buildbot
Browse files Browse the repository at this point in the history
disable approximate math in icx.
and disable ansi aliasing too (aria loghandler unit tests fail)
  • Loading branch information
vuvova committed Mar 27, 2024
1 parent 353f904 commit 89fd381
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configure.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit 89fd381

Please sign in to comment.