Merge pull request #1192 from larsclausen/fix-macos-ci
Use `-undefined dynamic_lookup` for linking loadable modules on MacOS
This commit is contained in:
commit
abaa32f793
|
|
@ -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*)
|
||||
|
|
|
|||
Loading…
Reference in New Issue