-
Notifications
You must be signed in to change notification settings - Fork 55
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
Build fails in MSVC toolchain #374
Comments
Can you paste the linker commandline and linker error when this happens? |
yes, I can. The following is the result of
The following is the result of pkg-config.
|
Unrelatedly, don't use pkg-config-rs automatically converts |
This is also very strange. |
I get it. Without --msvc-syntax
Definitely. It's a escape of non-ascii characters by cargo. But strange bytes added(I use is japanese language, but It mixed non-japanese characters). |
The cause of this issue is that when set the *.lib files required for linking gstreamer as an arguments to link.exe, that passing the file name instead of the full path.
There is a easy way to avoid this issue. That is to set the environment variable LINK to "/libpath:c:\gstreamer\1.0\x86_64\lib\pkgconfig" (for x86_64).
However, this way not a real solution.
The text was updated successfully, but these errors were encountered: