cmake : add a flag to disable F16C (#628)

This commit is contained in:
Andrew Huynh
2023-03-22 13:30:40 -07:00
committed by GitHub
parent aec01bb337
commit fc49c44426

View File

@ -172,7 +172,9 @@ else()
if(NOT WHISPER_NO_FMA)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mfma")
endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mf16c")
if(NOT WHISPER_NO_F16C)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mf16c")
endif()
endif()
endif()
endif()