We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f39475 commit 45e55f0Copy full SHA for 45e55f0
Makefile
@@ -43,11 +43,11 @@ ifeq ($(BUILDTYPE),windows)
43
else
44
CC = clang
45
CXX = clang++
46
- CFLAGS = \
+ CFLAGS += \
47
$(OPTFLAGS) \
48
-I/opt/homebrew/include -I/usr/local/include \
49
-Wno-unknown-warning-option
50
- CXXFLAGS = \
+ CXXFLAGS += \
51
52
-std=c++23 \
53
-fexperimental-library \
@@ -56,7 +56,7 @@ else
56
-Wformat-security \
57
-Wno-deprecated-enum-float-conversion \
58
-Wno-deprecated-enum-enum-conversion
59
- LDFLAGS =
+ LDFLAGS +=
60
AR = ar
61
PKG_CONFIG = pkg-config
62
ifeq ($(BUILDTYPE),osx)
@@ -67,7 +67,7 @@ endif
67
68
HOSTCC = gcc
69
HOSTCXX = g++ -std=c++20
70
-HOSTCFLAGS = -g -O3
+HOSTCFLAGS += -g -O3
71
HOSTLDFLAGS =
72
73
REALOBJ = .obj
0 commit comments