8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00

Fix MacOS build.

This commit is contained in:
Adriano dos Santos Fernandes 2023-09-18 20:20:38 -03:00
parent 5ce04e6a1e
commit 8693554daf

View File

@ -36,14 +36,20 @@ else
DefaultTarget := Release
endif
CPPFLAGS+= -I$(FB_BUILD)/include
CPPFLAGS += -std=c++17 -I$(FB_BUILD)/include
include $(ROOT)/gen/make.defaults
ifeq ($(CROSS_OUT), Y)
include $(ROOT)/gen/make.crossPlatform
else
include $(ROOT)/gen/make.platform
endif
ifeq ($(PLATFORM),DARWIN)
CPPFLAGS += -stdlib=libc++
endif
include $(ROOT)/gen/make.rules
include $(ROOT)/gen/make.shared.variables