We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91db846 commit 55d1a79Copy full SHA for 55d1a79
ggml/src/ggml-metal/CMakeLists.txt
@@ -71,7 +71,9 @@ else()
71
# note: adding -fno-inline fixes the tests when using MTL_SHADER_VALIDATION=1
72
# note: unfortunately, we have to call it default.metallib instead of ggml.metallib
73
# ref: https://github.com/ggerganov/whisper.cpp/issues/1720
74
- set(XC_FLAGS -fno-fast-math -fno-inline -g)
+ # note: adding -g causes segmentation fault during compile
75
+ #set(XC_FLAGS -fno-fast-math -fno-inline -g)
76
+ set(XC_FLAGS -fno-fast-math -fno-inline)
77
else()
78
set(XC_FLAGS -O3)
79
endif()
0 commit comments