Skip to content

Commit

Permalink
php: update macOS ldflags
Browse files Browse the repository at this point in the history
-undefined suppress is deprecated as of the new linker in macOS 14
We now use -undefined dynamic_lookup
  • Loading branch information
externl committed Jan 11, 2024
1 parent e29539b commit 3308488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/config/Make.rules
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ endif

ifeq ($(os),Darwin)
php_cppflags := $(php_cppflags) -Wno-unused-parameter -Wno-missing-field-initializers
php_ldflags := ${wl}-flat_namespace ${wl}-undefined ${wl}suppress
php_ldflags := -undefined dynamic_lookup
endif

ifeq ($(os),Linux)
Expand Down

0 comments on commit 3308488

Please sign in to comment.