-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
[x264:x64-windows] build failure #13327
Comments
By the way, environment variables in system setting contains exactly |
…#13019) * wip Apply suggestions from code review Co-authored-by: Alexander Neumann <[email protected]> * [vcpkg_acquire_msys] Trim list of packages. Introduce defaults. * [behaviortree-cpp] Fix dynamic dependency on ZMQ Co-authored-by: Robert Schumacher <[email protected]> Co-authored-by: Alexander Neumann <[email protected]> Co-authored-by: Billy Robert O'Neal III <[email protected]>
@Neumann-A config-x86-wiindows-dbg-out.log
config-x86-wiindows-dbg-err.log
|
I think it's time for us to switch to ShiftMedia |
I met the same questions now. Is there a stable commit of vcpkg which can be used now? |
@longnguyen2004 No, there is no need to do that. @NancyLi1013 That seems to be an error introduced by @ras0219 changes to MSYS. (see #13327 (comment)). It seems like x264 was forgotten to be removed from the skiplist. |
This should be fixed by #13450 in master. |
Alright I'll test it out |
Host Environment
To Reproduce
Steps to reproduce the behavior:
./vcpkg install x264:x64-windows
It could not cofigure at first, and I find the cause in
vcpkg_configure_make.cmake (line 223)
:string(REPLACE ";$ENV{SystemRoot}\\System32;" ";${MSYS_ROOT}/usr/share/automake-1.16;${MSYS_ROOT}/usr/bin;$ENV{SystemRoot}\\System32;" NEWPATH "$ENV{PATH}")
This intends to add some paths, however
$ENV{PATH}
of my system only containsC:\Windows\system32
, notC:\Windows\System32
, so it fails.After I modify this, it configures and builds well, but fails again when installing.
install-x64-windows-dbg-err.log
install-x64-windows-dbg-out.log
It seems to be config errors, I have no idea how to fix it after trying some ways, so I come here to seek some help.
The text was updated successfully, but these errors were encountered: