mctools / simplebuild

A very simple to use build system for projects with primarily C++/Python code, intended for usage by scientific developers without a strong SW-engineering background.
https://mctools.github.io/simplebuild/
Apache License 2.0
3 stars 1 forks source link

osx linker warnings about chained fixups #15

Closed tkittel closed 8 months ago

tkittel commented 1 year ago

ld: warning: -undefined dynamic_lookup may not work with chained fixups

https://github.com/bazelbuild/bazel/issues/16413

In particular see this comment: https://github.com/bazelbuild/bazel/issues/16413#issuecomment-1270603343

Warning seen on macos-12, macos-11 have different unrelated warnings (ld: warning: dylib (/Users/runner/hostedtoolcache/Python/3.10.13/x64/lib/libpython3.10.dylib) was built for newer macOS version (11.7) than being linked (11.0))

tkittel commented 1 year ago

Issues seen in simplebuild-dgcode CI.

tkittel commented 1 year ago

More relevant info:

https://developer.apple.com/forums/thread/719961

It might indeed be OK to simply ignore this warning.

tkittel commented 8 months ago

Seems we should do like everyone else compiling python extensions, and ignore this for the time being. Closing.