fix tools compilation with clang

This commit is contained in:
Philippe Teuwen 2024-08-14 21:23:43 +02:00
commit b700b1cd08
3 changed files with 5 additions and 5 deletions

View file

@ -394,7 +394,7 @@ ifeq ($(PYTHON_FOUND),1)
endif 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 += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000
MYCFLAGS += -O3 MYCFLAGS += -O3

View file

@ -23,8 +23,8 @@ ifneq (,$(findstring MINGW,$(platform)))
CFLAGS += -D_ISOC99_SOURCE CFLAGS += -D_ISOC99_SOURCE
endif endif
# macOS doesn't like these compiler params # clang doesn't like these compiler params
ifneq ($(platform),Darwin) ifneq ($(DETECTED_COMPILER), clang)
MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000 MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000
endif endif

View file

@ -21,8 +21,8 @@ ifneq (,$(findstring MINGW,$(platform)))
CFLAGS += -D_ISOC99_SOURCE CFLAGS += -D_ISOC99_SOURCE
endif endif
# macOS doesn't like these compiler params # clang doesn't like these compiler params
ifneq ($(platform),Darwin) ifneq ($(DETECTED_COMPILER), clang)
MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000 MYCFLAGS += --param max-completely-peeled-insns=1000 --param max-completely-peel-times=10000
endif endif