fix tools compilation with clang

This commit is contained in:
Philippe Teuwen
2024-08-14 21:23:43 +02:00
parent 52980ac48b
commit b700b1cd08
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -394,7 +394,7 @@ ifeq ($(PYTHON_FOUND),1)
endif
#######################################################################################################
# macOS doesn't like this params
# clang doesn't like this params
#MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000
MYCFLAGS += -O3
+2 -2
View File
@@ -23,8 +23,8 @@ ifneq (,$(findstring MINGW,$(platform)))
CFLAGS += -D_ISOC99_SOURCE
endif
# macOS doesn't like these compiler params
ifneq ($(platform),Darwin)
# clang doesn't like these compiler params
ifneq ($(DETECTED_COMPILER), clang)
MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000
endif
+2 -2
View File
@@ -21,8 +21,8 @@ ifneq (,$(findstring MINGW,$(platform)))
CFLAGS += -D_ISOC99_SOURCE
endif
# macOS doesn't like these compiler params
ifneq ($(platform),Darwin)
# clang doesn't like these compiler params
ifneq ($(DETECTED_COMPILER), clang)
MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000
endif