Skip to content

Commit 66b4784

Browse files
committed
misc: don't hide all toml++ symbols
1 parent 1600cf1 commit 66b4784

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libs/toml++/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
CXX ?= g++
22
SRC = toml.cpp
33
TARGET = toml.o
4-
CXXFLAGS = -I../../../include/ -fvisibility-inlines-hidden -fvisibility=hidden -fPIC -std=c++20
4+
CXXFLAGS = -I../../../include/ -fvisibility-inlines-hidden -fvisibility=default -fPIC -std=c++20
55

66
all: $(TARGET)
77

88
$(TARGET):
9-
${CXX} $(SRC) $(CXXFLAGS) -c -o ../../../$(BUILDDIR)/$@
9+
$(CXX) $(SRC) $(CXXFLAGS) -c -o ../../../$(BUILDDIR)/$@
1010

1111
clean:
1212
rm -rf ../../../$(BUILDDIR)/toml++/$(TARGET)

0 commit comments

Comments
 (0)