-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac - linking error (dyld: Symbol not found: __cg_jpeg_resync_to_restart) in beta but not stable #34869
Comments
Where the dependency on My initial impression is UB caused by a miscofigured system rather than an actual regression (i.e. its a miracle it worked before). Given the compilation succeeded, the linker got the right library/framework/etc and linked the binary up properly. After that, its all in the loader’s hands. |
@nagisa thanks for the insight! Yes, I believe postgres requires Your comment led me to an interesting finding: when running the built binary directly on my shell, it doesn't generate the linking error... Only when invoked with Stable cargo:
Beta cargo:
Now if I run the built binary manually it works:
|
Got it - this is due to this cargo change rust-lang/cargo#2763, which explains why stable and beta have different behavior. Error starts with the 2016-06-07 nightly. Edit: The reason this worked before is because |
I ran into this today with a fresh install of rust nightly on a MacBook.
|
i had this on cargo build of a 'hello world' project with no dependencies. i was able to "solve" this by uninstalling homebrew. MacOS 10.13.6 |
This came up in sgrif/pq-sys#1. It seems when trying to run/test anything using beta or later this crate fails to run (not build) with the below error.
Note: I don't have
DYLD_LIBRARY_PATH
set as an env var anywhere. It seems to be picking up the wronglibJPEG.dylib
in beta (/usr/local/lib
) instead of in the OSX library location (/System/Library/Frameworks/ImageIO.framework/Resources/...
). In part, I believe this to be due do the fact that thepg-sql
crate is addingnative=/usr/local/lib
via-L
because that's where the postgresql libraries from homebrew end up being installed. Curiously though, this linking problem does not occur on stable, leading me to believe it is resolving to the properlibJPEG.dylib
instead of the one in/usr/local/lib
.Running OSX 10.11.5.
Also, not sure if related or not, but I tried the workaround specified in #34754,
codegen-units=1
, but it did not eliminate the error.Beta (or nightly):
Stable:
I'm not sure of a smaller set to replicate. In order to get into this situation on a mac, you need to have done the following:
brew install postgres
brew install libjpeg
. This will add/usr/local/lib/libjpeg.dylib
which beta ends up linking to.Also related otool output:
The text was updated successfully, but these errors were encountered: