Skip to content
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

Does not seem to consider PKG_CONFIG_PATH on Windows #51

Open
sdroege opened this issue Nov 20, 2017 · 11 comments
Open

Does not seem to consider PKG_CONFIG_PATH on Windows #51

sdroege opened this issue Nov 20, 2017 · 11 comments

Comments

@sdroege
Copy link
Collaborator

sdroege commented Nov 20, 2017

See following output (it's the same with 0.3.9 and latest git of the pkg-config crate). This is with the MinGW target of Rust.

slomo@DESKTOP-63UL5V9 MSYS ~/gstreamer-rs
$ cargo build --all
    Updating git repository `https://github.com/alexcrichton/pkg-config-rs`
   Compiling pkg-config v0.3.9 (https://github.com/alexcrichton/pkg-config-rs#175dd559)
   Compiling glib-sys v0.4.0 (https://github.com/gtk-rs/sys#b08fc0e1)
error: failed to run custom build command for `glib-sys v0.4.0 (https://github.com/gtk-rs/sys#b08fc0e1)`
process didn't exit successfully: `C:\msys64\home\slomo\gstreamer-rs\target\debug\build\glib-sys-7dbb58e7b49d4edd\build-script-build` (exit code: 1)
--- stderr
`"pkg-config" "--libs" "--cflags" "glib-2.0 >= 2.32"` did not exit successfully: exit code: 1
--- stderr
Package glib-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `glib-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'glib-2.0' found


warning: build failed, waiting for other jobs to finish...
error: build failed

slomo@DESKTOP-63UL5V9 MSYS ~/gstreamer-rs
$ pkg-config --libs --cflags "glib-2.0 >= 2.32"
-mms-bitfields -I/c/gstreamer/1.0/x86_64/include/glib-2.0 -I/c/gstreamer/1.0/x86_64/lib/glib-2.0/include -L/c/gstreamer/1.0/x86_64/lib -lglib-2.0 -lintl -lws2_32 -lole32 -lwinmm -lshlwapi -lintl

slomo@DESKTOP-63UL5V9 MSYS ~/gstreamer-rs
$ echo $PKG_CONFIG_PATH
/c/gstreamer/1.0/x86_64/lib/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig:/lib/pkgconfig
@alexcrichton
Copy link
Member

Hm AFAIK this doesn't attempt to change the env var at all, but I wouldn't be too surprised if pkg-config-the-program on MinGW behaved differently when invoked from the shell vs from a "native" windows app like a Rust build script.

@alexcrichton
Copy link
Member

Can you try printing out env::var("PKG_CONFIG_PATH") in the associated build script and see what pops out?

@sdroege
Copy link
Collaborator Author

sdroege commented Nov 20, 2017

It's indeed behaving different: it's printing the paths as Windows paths (c:\etc) instead of UNIX-style paths. If I set PKG_CONFIG_PATH to such paths myself, pkg-config also fails to find everything.

The pkg-config I have here is the one from msys2.

@alexcrichton
Copy link
Member

Hm yeah so I know things are really weird on msys2/mingw sometimes, I just never really know when or why. It sounds like our only recourse here is to detect that we'll be calling msys2 and then munge paths manually, but that's sort of crappy :(

@sdroege
Copy link
Collaborator Author

sdroege commented Nov 21, 2017

And not only those, but probably also the paths that pkg-config is returning?

@alexcrichton
Copy link
Member

Presumably? It's probably easiest just to give a better error and say "install the mingw versions instead of the msys verisons instead"

@sdroege
Copy link
Collaborator Author

sdroege commented Nov 22, 2017

Or that :)

@nirbheek
Copy link

nirbheek commented Nov 22, 2017

I thought I'd clear up some terminology here so that the error message is not confusing.

MinGW is a port of the GNU toolchain to Windows, and it does not include pkg-config or any other tools. This port is basically unmaintained, and everyone uses MinGW-W64, which is a totally independent effort.

For the tools (including pkg-config), MSYS is one distribution which is shipped with both MinGW and MinGW-W64. In my experience this works quite well but can be difficult to setup.

MSYS2 is a totally separate effort from all these and ships its own toolchains (which it also calls 'MinGW', and is based on MinGW-W64) and its own tools. It is a from-scratch rewrite inspired by Cygwin (but does not use Cygwin), and it really easy to setup and use since it uses the pacman package manager.

Unfortunately in my experience MSYS2 ships broken versions of tools (including pkg-config). As long as you only use the MSYS2 environment everything works fine, but as soon as you try to mix with outside toolchains (msvc, rustc, etc) or windows tools you quickly run into edge cases. For instance, MSYS does path translation in the environment and on the command-line which MSYS2 does not.

On the Rust side, it might be useful to have something like Python's pathlib which allows you to translate from Windows to UNIX paths very easily. Then pkg-config-rs would be able to instantiate a PurePath object and convert to UNIX with the equivalent of PurePath.as_posix() to ensure that the right kinds of paths are passed in the env to pkg-config.

@nirbheek
Copy link

Also, if you only want pkg-config, maybe you can use https://sourceforge.net/projects/pkgconfiglite/ which is a standalone executable. It has worked well for me, but I have not used it extensively.

Ideally someone would reimplement pkg-config in Rust though ;)

@RazrFalcon
Copy link

Is there a workaround for this issue?

@nirbheek
Copy link

nirbheek commented Dec 9, 2017

@RazrFalcon yes, don't use MSYS2's pkg-config. Use pkgconfiglite which is a standalone executable you can drop anywhere in your PATH.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants