Skip to content

Commit

Permalink
Merge pull request #1192 from larsclausen/fix-macos-ci
Browse files Browse the repository at this point in the history
Use `-undefined dynamic_lookup` for linking loadable modules on MacOS
  • Loading branch information
caryr authored Dec 27, 2024
2 parents 06077ed + 342ba62 commit abaa32f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aclocal.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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*)
Expand Down

0 comments on commit abaa32f

Please sign in to comment.