Merge pull request #1192 from larsclausen/fix-macos-ci

Use `-undefined dynamic_lookup` for linking loadable modules on MacOS
This commit is contained in:
Cary R. 2024-12-27 10:42:36 -08:00 committed by GitHub
commit abaa32f793
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

4
aclocal.m4 vendored
View File

@ -123,11 +123,11 @@ case "${host}" in
;;
*-*-darwin1.[0123])
shared="-bundle -undefined suppress"
shared="-bundle -undefined dynamic_lookup"
;;
*-*-darwin*)
shared="-bundle -undefined suppress -flat_namespace"
shared="-bundle -undefined dynamic_lookup -flat_namespace"
;;
*-*-solaris*)