We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1600cf1 commit 66b4784Copy full SHA for 66b4784
1 file changed
src/libs/toml++/Makefile
@@ -1,12 +1,12 @@
1
CXX ?= g++
2
SRC = toml.cpp
3
TARGET = toml.o
4
-CXXFLAGS = -I../../../include/ -fvisibility-inlines-hidden -fvisibility=hidden -fPIC -std=c++20
+CXXFLAGS = -I../../../include/ -fvisibility-inlines-hidden -fvisibility=default -fPIC -std=c++20
5
6
all: $(TARGET)
7
8
$(TARGET):
9
- ${CXX} $(SRC) $(CXXFLAGS) -c -o ../../../$(BUILDDIR)/$@
+ $(CXX) $(SRC) $(CXXFLAGS) -c -o ../../../$(BUILDDIR)/$@
10
11
clean:
12
rm -rf ../../../$(BUILDDIR)/toml++/$(TARGET)
0 commit comments