Don't use fast math for gdtoa

- gdtoa is for converting floating point numbers to and from string
  representations. I'd consider accuracy more important than speed here.
This commit is contained in:
Randy Heit 2016-02-22 18:14:24 -06:00
parent 78552cc676
commit a8e985f4f6
1 changed files with 0 additions and 3 deletions

View File

@ -12,9 +12,6 @@ if( ZD_CMAKE_COMPILER_IS_GNUC_COMPATIBLE )
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra" )
endif()
# Enable fast flag for gdtoa
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${ZD_FASTMATH_FLAG}" )
include_directories( ${CMAKE_CURRENT_BINARY_DIR} )
add_definitions( -DINFNAN_CHECK -DMULTIPLE_THREADS )