Added flag for compilation for macOS

This commit is contained in:
Egor Sheremetov 2024-05-15 11:36:34 +03:00 committed by Roman Venediktov
parent 19116f0821
commit f4504de0ca

View file

@ -1,5 +1,5 @@
CC=clang
COMMON_FLAGS=-g2 -std=gnu99 -fstack-protector-all -Wno-error=implicit-function-declaration
COMMON_FLAGS=-g2 -std=gnu99 -fstack-protector-all -Wno-error=implicit-function-declaration -target X86_64-apple-macho
PROD_FLAGS=$(COMMON_FLAGS) -DLAMA_ENV
TEST_FLAGS=$(COMMON_FLAGS) -DDEBUG_VERSION
UNIT_TESTS_FLAGS=$(TEST_FLAGS)