You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ld: warning: -bind_at_load is deprecated on macOS
From $ man ld:
Sets a bit in the mach header of the resulting binary which tells dyld
to bind all symbols when the binary is loaded, rather than lazily.
This contradicts the flags RTLD_LAZY|RTLD_LOCAL passed to dlopen
when loading libCling, and is different from the behavior on other
platforms that don't have this flag, such as Linux.
Also remove the warning suppression that was hiding this deprecation
message. It was added as part of commit 5ad4ab9 ("[cmake] Silence
macOS linker warnings on -undefined dynamic_lookup:"), which we don't
use anymore for libCling since the previous commit.
0 commit comments