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

@ -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