Skip to content

Commit

Permalink
build: fix LDFLAG -undefined dynamic_lookup for MacOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Sep 18, 2024
1 parent 7b5a14b commit bd7aebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ifeq ($(UNAME_SYS), Darwin)
CXXFLAGS ?= -O3 -finline-functions -Wall -Wextra -Wconversion -Wcast-align -Wformat=2 -Wformat-security \
-Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wstrict-overflow \
-I$(CYRUS_INCLUDE) -I$(KRB5_INCLUDE)
LDFLAGS ?= -undefined dynamic_lookup
LDFLAGS += -undefined dynamic_lookup

LDLIBS += -L$(CYRUS_LIB) -L$(KRB5_LIB)
else ifeq ($(UNAME_SYS), FreeBSD)
Expand Down

0 comments on commit bd7aebc

Please sign in to comment.