Closed Thomas1664 closed 2 years ago
Starting package 2/2: qtapplicationmanager:x64-windows
Building package qtapplicationmanager[core]:x64-windows...
-- Using cached E:/vcpkg_cache/downloads/qtapplicationmanager-6.2.3.tar.gz
-- Extracting source E:/vcpkg_cache/downloads/qtapplicationmanager-6.2.3.tar.gz
-- Applying patch bump-cmake-version.patch
-- Applying patch wrapper-fixes.patch
-- Using source at E:/bqt/qtapplicationmanager/src/6.2.3-21a9172716.clean
-- Configuring x64-windows
-- Building x64-windows-dbg
-- Building x64-windows-rel
-- Installing: E:/vcpkg_folders/master/packages/qtapplicationmanager_x64-windows/share/qtapplicationmanager/copyright
-- Performing post-build validation
-- Performing post-build validation done
Stored binary cache: E:\vcpkg_cache\binaries\bb\bb0298878c4285591e5541b440382a4a8cd88a7435b6f949ecd162cbfd8ca793.zip
Installing package qtapplicationmanager[core]:x64-windows...
Elapsed time for package qtapplicationmanager:x64-windows: 3.331 min
I cannot locally reproduce it. Most likely reason: optional dependency pulling in release dll instead of debug dll.
The failed command line is very long (>4400 characters), with 3400 characters alone related to updating the PATH
. Maybe it helps to review your system's PATH
which is the key input in the process? I cannot say which parts are prepended, inserted or appended, but vcpkg seems to contribute.
D:\buildtrees\qtapplicationmanager\x64-windows-dbg\src\tools\dumpqmltypes\\
D:\packages\qtapplicationmanager_x64-windows\debug\bin\\
D:\installed\x64-windows\bin\\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\bin\HostX64\x64\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\Performance Tools\x64\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\Performance Tools\
C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\\
C:\Program Files (x86)\HTML Help Workshop\
C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64\
C:\Program Files (x86)\Windows Kits\10\bin\\x64\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64\
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\\
C:\Program Files\PowerShell\7\
C:\Windows\system32\
C:\Windows\
C:\Windows\system32\Wbem\
C:\Windows\system32\WindowsPowerShell\v1.0\\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe\
D:/downloads/tools/perl/5.32.1.1/perl/bin\
D:/downloads/tools/python/python-3.10.2-x64\
D:/downloads/tools/ninja/1.10.2-windows\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\bin\HostX64\x64
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\Performance Tools\x64
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\Performance Tools
C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\
C:\Program Files (x86)\HTML Help Workshop
C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64
C:\Program Files (x86)\Windows Kits\10\bin\\x64
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64
C:\Windows\Microsoft.NET\Framework64\v4.0.30319
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\
C:\Program Files\PowerShell\7
C:\Windows\system32
C:\Windows
C:\Windows\system32\Wbem
C:\Windows\system32\WindowsPowerShell\v1.0\
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe
D:/downloads/tools/perl/5.32.1.1/perl/bin
D:/downloads/tools/python/python-3.10.2-x64
D:/downloads/tools/ninja/1.10.2-windows
The failed command line is very long (>4400 characters), with 3400 characters alone related to updating the
PATH
. Maybe it helps to review your system'sPATH
which is the key input in the process? I cannot say which parts are prepended, inserted or appended, but vcpkg seems to contribute.
@dg0yt @LilyWangLL To be clear: This is a CI issue introduced in PR #23011. See also the latest CI run in #22878. You should be able to reproduce it by triggering CI to build qtapplicationmanager on x64-windows
@dg0yt: That cannot be the issue. My base paths are longer.
@Thomas1664 your evaluation is probably wrong. The mentioned PR probably just discovered the failure.
What could be happening here:
ADD_BIN_TO_PATH
. Why could it be happening? Most probably due to pkgconf being available and a port not fixing up the pkgconf files. Why is the mismatch not being detected by the linker as an error? -> Probably a C only library. The error would be trivial to fix if we could somehow see the msg in the dialog box windows normally throws for such errors but without that it is very difficult. We can retrigger a build of qtbase and look if the error is gone but if that doesn't help the root of the error is not in the qt ports but somewhere else. We could also try running file(GET_RUNTIME_DEPENDENCIES)
on the file and not run the final step in the build. (basically only building the target executable and then run info stuff on it)
The error would be trivial to fix if we could somehow see the msg in the dialog box windows normally throws for such errors but without that it is very difficult. We can retrigger a build of qtbase and look if the error is gone but if that doesn't help the root of the error is not in the qt ports but somewhere else.
@Neumann-A I incremented port version of qtbase. This should trigger CI to build qtbase. See https://dev.azure.com/vcpkg/public/_build/results?buildId=68996&view=results
Edit: I just saw that you do the same thing in #23627
Resolved Deps:
C:/Windows/system32/aclui.dll;C:/Windows/system32/activeds.dll;C:/Windows/system32/adsldpc.dll;C:/Windows/system32/advapi32.dll;C:/Windows/system32/advpack.dll;C:/Windows/system32/aepic.dll;C:/Windows/system32/apphelp.dll;D:\installed\x64-windows\debug\bin/archive.dll;C:/Windows/system32/audioses.dll;C:/Windows/system32/authz.dll;C:/Windows/system32/avrt.dll;C:/Windows/system32/bcd.dll;C:/Windows/system32/bcp47langs.dll;C:/Windows/system32/bcp47mrm.dll;C:/Windows/system32/bcrypt.dll;C:/Windows/system32/bcryptprimitives.dll;D:/installed/x64-windows/debug/bin/brotlicommon.dll;D:/installed/x64-windows/debug/bin/brotlidec.dll;C:/Windows/system32/browcli.dll;D:/installed/x64-windows/debug/bin/bz2d.dll;C:/Windows/system32/cabinet.dll;C:/Windows/system32/certca.dll;C:/Windows/system32/certenroll.dll;C:/Windows/system32/cfgmgr32.dll;C:/Windows/system32/chartv.dll;C:/Windows/system32/cldapi.dll;C:/Windows/system32/combase.dll;C:/Windows/system32/comctl32.dll;C:/Windows/system32/comdlg32.dll;C:/Windows/system32/coml2.dll;C:/Windows/system32/comppkgsup.dll;C:/Windows/system32/contactactivation.dll;C:/Windows/system32/coremessaging.dll;C:/Windows/system32/coreuicomponents.dll;C:/Windows/system32/credui.dll;C:/Windows/system32/crypt32.dll;C:/Windows/system32/cryptbase.dll;C:/Windows/system32/cryptnet.dll;C:/Windows/system32/cryptngc.dll;C:/Windows/system32/cryptsp.dll;C:/Windows/system32/crypttpmeksvc.dll;C:/Windows/system32/cryptui.dll;C:/Windows/system32/cryptxml.dll;C:/Windows/system32/cscapi.dll;C:/Windows/system32/d2d1.dll;C:/Windows/system32/d3d11.dll;C:/Windows/system32/d3d11on12.dll;C:/Windows/system32/d3d12.dll;C:/Windows/system32/d3dscache.dll;C:/Windows/system32/davhlpr.dll;C:/Windows/system32/dbgeng.dll;C:/Windows/system32/dbghelp.dll;C:/Windows/system32/dbgmodel.dll;C:/Windows/system32/dcomp.dll;C:/Windows/system32/devmgr.dll;C:/Windows/system32/devobj.dll;C:/Windows/system32/devrtl.dll;C:/Windows/system32/dfscli.dll;C:/Windows/system32/dhcpcsvc.dll;C:/Windows/system32/dhcpcsvc6.dll;C:/Windows/system32/dmcmnutils.dll;C:/Windows/system32/dmenrollengine.dll;C:/Windows/system32/dmpushproxy.dll;C:/Windows/system32/dnsapi.dll;C:/Windows/system32/dpapi.dll;C:/Windows/system32/drvstore.dll;C:/Windows/system32/dsclient.dll;C:/Windows/system32/dsparse.dll;C:/Windows/system32/dsreg.dll;C:/Windows/system32/dsrole.dll;C:/Windows/system32/dui70.dll;C:/Windows/system32/duser.dll;C:/Windows/system32/dwmapi.dll;C:/Windows/system32/dwrite.dll;C:/Windows/system32/dxgi.dll;C:/Windows/system32/edpauditapi.dll;C:/Windows/system32/edputil.dll;C:/Windows/system32/efsadu.dll;C:/Windows/system32/efsutil.dll;C:/Windows/system32/efswrt.dll;C:/Windows/system32/elscore.dll;C:/Windows/system32/enterpriseresourcemanager.dll;C:/Windows/system32/esent.dll;C:/Windows/system32/faultrep.dll;C:/Windows/system32/feclient.dll;C:/Windows/system32/firewallapi.dll;C:/Windows/system32/fltlib.dll;C:/Windows/system32/fms.dll;D:/installed/x64-windows/debug/bin/freetyped.dll;C:/Windows/system32/fveapi.dll;C:/Windows/system32/fvecerts.dll;C:/Windows/system32/fwbase.dll;C:/Windows/system32/fwpolicyiomgr.dll;C:/Windows/system32/gdi32.dll;C:/Windows/system32/gdiplus.dll;D:/installed/x64-windows/debug/bin/harfbuzz.dll;C:/Windows/system32/hid.dll;C:/Windows/system32/httpapi.dll;D:/installed/x64-windows/debug/bin/iconv-2.dll;C:/Windows/system32/icu.dll;D:/installed/x64-windows/debug/bin/icudtd69.dll;D:/installed/x64-windows/debug/bin/icuind69.dll;D:/installed/x64-windows/debug/bin/icuucd69.dll;C:/Windows/system32/iertutil.dll;C:/Windows/system32/imagehlp.dll;C:/Windows/system32/imm32.dll;C:/Windows/system32/iphlpapi.dll;C:/Windows/system32/iri.dll;C:/Windows/system32/kernel32.dll;C:/Windows/system32/kernelbase.dll;D:/installed/x64-windows/debug/bin/libcrypto-1_1-x64.dll;D:/installed/x64-windows/debug/bin/liblzma.dll;D:/installed/x64-windows/debug/bin/libpng16d.dll;D:/installed/x64-windows/debug/bin/libxml2.dll;C:/Windows/system32/linkinfo.dll;C:/Windows/system32/logoncli.dll;D:/installed/x64-windows/debug/bin/lz4d.dll;C:/Windows/system32/mdmregistration.dll;C:/Windows/system32/mfc42u.dll;C:/Windows/system32/mmdevapi.dll;C:/Windows/system32/mpr.dll;C:/Windows/system32/mrmcorer.dll;C:/Windows/system32/msasn1.dll;C:/Windows/system32/msctf.dll;C:/Windows/system32/msiltcfg.dll;C:/Windows/system32/msimg32.dll;C:/Windows/system32/msvcp110_win.dll;C:\Windows\system32/msvcp140_1d.dll;C:\Windows\system32/msvcp140_2d.dll;C:/Windows/system32/msvcp140d.dll;C:/Windows/system32/msvcp_win.dll;C:/Windows/system32/msvcrt.dll;C:/Windows/system32/ncrypt.dll;C:/Windows/system32/netapi32.dll;C:/Windows/system32/netutils.dll;C:/Windows/system32/newdev.dll;C:/Windows/system32/nrtapi.dll;C:/Windows/system32/nsi.dll;C:/Windows/system32/ntasn1.dll;C:/Windows/system32/ntdll.dll;C:/Windows/system32/ntdsapi.dll;C:/Windows/system32/ntshrui.dll;C:/Windows/system32/ole32.dll;C:/Windows/system32/oleacc.dll;C:/Windows/system32/oleaut32.dll;C:/Windows/system32/oledlg.dll;C:/Windows/system32/omadmapi.dll;D:/installed/x64-windows/debug/bin/pcre2-16d.dll;C:/Windows/system32/policymanager.dll;C:/Windows/system32/powrprof.dll;C:/Windows/system32/printui.dll;C:/Windows/system32/profapi.dll;C:/Windows/system32/propsys.dll;C:/Windows/system32/puiapi.dll;D:\installed\x64-windows\debug\bin/qt6concurrentd.dll;D:/installed/x64-windows/debug/bin/qt6cored.dll;D:\installed\x64-windows\debug\bin/qt6dbusd.dll;D:/installed/x64-windows/debug/bin/qt6guid.dll;D:/installed/x64-windows/debug/bin/qt6networkd.dll;D:/installed/x64-windows/debug/bin/qt6opengld.dll;D:/installed/x64-windows/debug/bin/qt6qmld.dll;D:/installed/x64-windows/debug/bin/qt6qmlmodelsd.dll;D:\installed\x64-windows\debug\bin/qt6quickd.dll;C:/Windows/system32/regapi.dll;C:/Windows/system32/rmclient.dll;C:/Windows/system32/rpcrt4.dll;C:/Windows/system32/samcli.dll;C:/Windows/system32/samlib.dll;C:/Windows/system32/scecli.dll;C:/Windows/system32/sechost.dll;C:/Windows/system32/secur32.dll;C:/Windows/system32/servicingcommon.dll;C:/Windows/system32/setupapi.dll;C:/Windows/system32/shcore.dll;C:/Windows/system32/shdocvw.dll;C:/Windows/system32/shell32.dll;C:/Windows/system32/shlwapi.dll;C:/Windows/system32/spfileq.dll;C:/Windows/system32/spinf.dll;C:/Windows/system32/srpapi.dll;C:/Windows/system32/srvcli.dll;C:/Windows/system32/sspicli.dll;C:/Windows/system32/tbs.dll;C:/Windows/system32/textinputframework.dll;C:/Windows/system32/textshaping.dll;C:/Windows/system32/tokenbinding.dll;C:/Windows/system32/tpmcoreprovisioning.dll;C:/Windows/system32/twinapi.appcore.dll;C:/Windows/system32/twinapi.dll;C:/Windows/system32/ucrtbased.dll;C:/Windows/system32/umpdc.dll;C:/Windows/system32/unenrollhook.dll;C:/Windows/system32/urlmon.dll;C:/Windows/system32/user32.dll;C:/Windows/system32/userdatatypehelperutil.dll;C:/Windows/system32/userenv.dll;C:/Windows/system32/uxtheme.dll;C:/Windows/system32/vaultcli.dll;C:/Windows/system32/vcruntime140d.dll;C:/Windows/system32/version.dll;C:/Windows/system32/virtdisk.dll;C:/Windows/system32/w32topl.dll;C:/Windows/system32/webauthn.dll;C:/Windows/system32/webio.dll;C:/Windows/system32/webservices.dll;C:/Windows/system32/websocket.dll;C:/Windows/system32/wer.dll;C:/Windows/system32/wevtapi.dll;C:/Windows/system32/win32u.dll;C:/Windows/system32/winbrand.dll;C:/Windows/system32/windowscodecs.dll;C:/Windows/system32/windowsperformancerecordercontrol.dll;C:/Windows/system32/winhttp.dll;C:/Windows/system32/wininet.dll;C:/Windows/system32/winmm.dll;C:/Windows/system32/winmmbase.dll;C:/Windows/system32/winnsi.dll;C:/Windows/system32/winsta.dll;C:/Windows/system32/wintrust.dll;C:/Windows/system32/wkscli.dll;C:/Windows/system32/wldap32.dll;C:/Windows/system32/wldp.dll;C:/Windows/system32/wmiclnt.dll;C:/Windows/system32/ws2_32.dll;C:/Windows/system32/wtsapi32.dll;C:/Windows/system32/wuceffects.dll;C:/Windows/system32/xmllite.dll;D:\installed\x64-windows\debug\bin/yaml.dll;D:/installed/x64-windows/debug/bin/zlibd1.dll;D:/installed/x64-windows/debug/bin/zstd.dll
Unresolved deps:
api-ms-win-appmodel-advertisingid-l1-1-0.dll;api-ms-win-appmodel-identity-l1-2-0.dll;api-ms-win-appmodel-runtime-internal-l1-1-1.dll;api-ms-win-appmodel-runtime-internal-l1-1-2.dll;api-ms-win-appmodel-runtime-internal-l1-1-3.dll;api-ms-win-appmodel-runtime-internal-l1-1-7.dll;api-ms-win-appmodel-runtime-l1-1-0.dll;api-ms-win-appmodel-runtime-l1-1-1.dll;api-ms-win-appmodel-state-l1-2-0.dll;api-ms-win-appmodel-unlock-l1-1-0.dll;api-ms-win-base-util-l1-1-0.dll;api-ms-win-containers-cmclient-l1-1-0.dll;api-ms-win-containers-cmclient-l1-2-0.dll;api-ms-win-core-apiquery-l1-1-0.dll;api-ms-win-core-apiquery-l2-1-0.dll;api-ms-win-core-appcompat-l1-1-0.dll;api-ms-win-core-appcompat-l1-1-1.dll;api-ms-win-core-appinit-l1-1-0.dll;api-ms-win-core-atoms-l1-1-0.dll;api-ms-win-core-com-l1-1-0.dll;api-ms-win-core-com-l1-1-1.dll;api-ms-win-core-com-l1-1-2.dll;api-ms-win-core-com-l2-1-1.dll;api-ms-win-core-com-midlproxystub-l1-1-0.dll;api-ms-win-core-com-private-l1-1-0.dll;api-ms-win-core-com-private-l1-1-1.dll;api-ms-win-core-com-private-l1-2-0.dll;api-ms-win-core-com-private-l1-3-0.dll;api-ms-win-core-com-private-l1-3-1.dll;api-ms-win-core-comm-l1-1-0.dll;api-ms-win-core-console-l1-1-0.dll;api-ms-win-core-console-l1-2-0.dll;api-ms-win-core-console-l1-2-1.dll;api-ms-win-core-console-l2-1-0.dll;api-ms-win-core-console-l2-2-0.dll;api-ms-win-core-console-l3-2-0.dll;api-ms-win-core-crt-l1-1-0.dll;api-ms-win-core-crt-l2-1-0.dll;api-ms-win-core-datetime-l1-1-0.dll;api-ms-win-core-datetime-l1-1-1.dll;api-ms-win-core-datetime-l1-1-2.dll;api-ms-win-core-debug-l1-1-0.dll;api-ms-win-core-debug-l1-1-1.dll;api-ms-win-core-debug-minidump-l1-1-0.dll;api-ms-win-core-delayload-l1-1-0.dll;api-ms-win-core-delayload-l1-1-1.dll;api-ms-win-core-errorhandling-l1-1-0.dll;api-ms-win-core-errorhandling-l1-1-2.dll;api-ms-win-core-errorhandling-l1-1-3.dll;api-ms-win-core-featurestaging-l1-1-0.dll;api-ms-win-core-fibers-l1-1-0.dll;api-ms-win-core-fibers-l1-1-1.dll;api-ms-win-core-fibers-l2-1-0.dll;api-ms-win-core-fibers-l2-1-1.dll;api-ms-win-core-file-l1-1-0.dll;api-ms-win-core-file-l1-2-0.dll;api-ms-win-core-file-l1-2-1.dll;api-ms-win-core-file-l1-2-2.dll;api-ms-win-core-file-l1-2-4.dll;api-ms-win-core-file-l2-1-0.dll;api-ms-win-core-file-l2-1-1.dll;api-ms-win-core-file-l2-1-2.dll;api-ms-win-core-file-l2-1-3.dll;api-ms-win-core-handle-l1-1-0.dll;api-ms-win-core-heap-l1-1-0.dll;api-ms-win-core-heap-l2-1-0.dll;api-ms-win-core-heap-obsolete-l1-1-0.dll;api-ms-win-core-interlocked-l1-1-0.dll;api-ms-win-core-io-l1-1-0.dll;api-ms-win-core-io-l1-1-1.dll;api-ms-win-core-job-l1-1-0.dll;api-ms-win-core-job-l2-1-0.dll;api-ms-win-core-kernel32-legacy-l1-1-0.dll;api-ms-win-core-kernel32-legacy-l1-1-1.dll;api-ms-win-core-kernel32-legacy-l1-1-2.dll;api-ms-win-core-kernel32-private-l1-1-0.dll;api-ms-win-core-kernel32-private-l1-1-1.dll;api-ms-win-core-kernel32-private-l1-1-2.dll;api-ms-win-core-largeinteger-l1-1-0.dll;api-ms-win-core-libraryloader-l1-1-0.dll;api-ms-win-core-libraryloader-l1-2-0.dll;api-ms-win-core-libraryloader-l1-2-1.dll;api-ms-win-core-libraryloader-l1-2-2.dll;api-ms-win-core-libraryloader-l1-2-3.dll;api-ms-win-core-libraryloader-l2-1-0.dll;api-ms-win-core-localization-l1-1-0.dll;api-ms-win-core-localization-l1-2-0.dll;api-ms-win-core-localization-l1-2-2.dll;api-ms-win-core-localization-l2-1-0.dll;api-ms-win-core-localization-obsolete-l1-2-0.dll;api-ms-win-core-localization-private-l1-1-0.dll;api-ms-win-core-localregistry-l1-1-0.dll;api-ms-win-core-marshal-l1-1-0.dll;api-ms-win-core-memory-l1-1-0.dll;api-ms-win-core-memory-l1-1-1.dll;api-ms-win-core-memory-l1-1-2.dll;api-ms-win-core-memory-l1-1-3.dll;api-ms-win-core-misc-l1-1-0.dll;api-ms-win-core-namedpipe-l1-1-0.dll;api-ms-win-core-namedpipe-l1-2-1.dll;api-ms-win-core-namedpipe-l1-2-2.dll;api-ms-win-core-namespace-l1-1-0.dll;api-ms-win-core-normalization-l1-1-0.dll;api-ms-win-core-path-l1-1-0.dll;api-ms-win-core-pcw-l1-1-0.dll;api-ms-win-core-privateprofile-l1-1-0.dll;api-ms-win-core-privateprofile-l1-1-1.dll;api-ms-win-core-processenvironment-l1-1-0.dll;api-ms-win-core-processenvironment-l1-2-0.dll;api-ms-win-core-processsnapshot-l1-1-0.dll;api-ms-win-core-processthreads-l1-1-0.dll;api-ms-win-core-processthreads-l1-1-1.dll;api-ms-win-core-processthreads-l1-1-2.dll;api-ms-win-core-processthreads-l1-1-3.dll;api-ms-win-core-processtopology-l1-1-0.dll;api-ms-win-core-processtopology-obsolete-l1-1-0.dll;api-ms-win-core-profile-l1-1-0.dll;api-ms-win-core-psapi-ansi-l1-1-0.dll;api-ms-win-core-psapi-l1-1-0.dll;api-ms-win-core-psm-app-l1-1-0.dll;api-ms-win-core-psm-appnotify-l1-1-0.dll;api-ms-win-core-psm-key-l1-1-0.dll;api-ms-win-core-psm-key-l1-1-3.dll;api-ms-win-core-psm-rtimer-l1-1-1.dll;api-ms-win-core-quirks-l1-1-0.dll;api-ms-win-core-realtime-l1-1-0.dll;api-ms-win-core-realtime-l1-1-1.dll;api-ms-win-core-registry-l1-1-0.dll;api-ms-win-core-registry-l1-1-1.dll;api-ms-win-core-registry-l1-1-2.dll;api-ms-win-core-registry-l2-1-0.dll;api-ms-win-core-registry-private-l1-1-0.dll;api-ms-win-core-registryuserspecific-l1-1-0.dll;api-ms-win-core-rtlsupport-l1-1-0.dll;api-ms-win-core-rtlsupport-l1-2-2.dll;api-ms-win-core-shlwapi-legacy-l1-1-0.dll;api-ms-win-core-shlwapi-obsolete-l1-1-0.dll;api-ms-win-core-shutdown-l1-1-0.dll;api-ms-win-core-shutdown-l1-1-1.dll;api-ms-win-core-sidebyside-l1-1-0.dll;api-ms-win-core-string-l1-1-0.dll;api-ms-win-core-string-l2-1-0.dll;api-ms-win-core-string-l2-1-1.dll;api-ms-win-core-string-obsolete-l1-1-0.dll;api-ms-win-core-stringansi-l1-1-0.dll;api-ms-win-core-synch-ansi-l1-1-0.dll;api-ms-win-core-synch-l1-1-0.dll;api-ms-win-core-synch-l1-2-0.dll;api-ms-win-core-synch-l1-2-1.dll;api-ms-win-core-sysinfo-l1-1-0.dll;api-ms-win-core-sysinfo-l1-2-0.dll;api-ms-win-core-sysinfo-l1-2-1.dll;api-ms-win-core-sysinfo-l1-2-3.dll;api-ms-win-core-sysinfo-l2-1-0.dll;api-ms-win-core-systemtopology-l1-1-0.dll;api-ms-win-core-systemtopology-l1-1-1.dll;api-ms-win-core-textinput-client-l1-1-0.dll;api-ms-win-core-textinput-client-l1-1-1.dll;api-ms-win-core-threadpool-l1-1-0.dll;api-ms-win-core-threadpool-l1-2-0.dll;api-ms-win-core-threadpool-legacy-l1-1-0.dll;api-ms-win-core-threadpool-private-l1-1-0.dll;api-ms-win-core-timezone-l1-1-0.dll;api-ms-win-core-toolhelp-l1-1-0.dll;api-ms-win-core-url-l1-1-0.dll;api-ms-win-core-util-l1-1-0.dll;api-ms-win-core-version-l1-1-0.dll;api-ms-win-core-version-l1-1-1.dll;api-ms-win-core-version-private-l1-1-0.dll;api-ms-win-core-versionansi-l1-1-0.dll;api-ms-win-core-versionansi-l1-1-1.dll;api-ms-win-core-windowserrorreporting-l1-1-0.dll;api-ms-win-core-windowserrorreporting-l1-1-1.dll;api-ms-win-core-windowserrorreporting-l1-1-2.dll;api-ms-win-core-windowserrorreporting-l1-1-3.dll;api-ms-win-core-winrt-error-l1-1-0.dll;api-ms-win-core-winrt-error-l1-1-1.dll;api-ms-win-core-winrt-errorprivate-l1-1-0.dll;api-ms-win-core-winrt-l1-1-0.dll;api-ms-win-core-winrt-propertysetprivate-l1-1-0.dll;api-ms-win-core-winrt-propertysetprivate-l1-1-1.dll;api-ms-win-core-winrt-registration-l1-1-0.dll;api-ms-win-core-winrt-robuffer-l1-1-0.dll;api-ms-win-core-winrt-string-l1-1-0.dll;api-ms-win-core-wow64-l1-1-0.dll;api-ms-win-core-wow64-l1-1-1.dll;api-ms-win-core-wow64-l1-1-3.dll;api-ms-win-core-xstate-l2-1-0.dll;api-ms-win-core-xstate-l2-1-1.dll;api-ms-win-core-xstate-l2-1-2.dll;api-ms-win-coreui-secruntime-l1-1-0.dll;api-ms-win-crt-convert-l1-1-0.dll;api-ms-win-crt-environment-l1-1-0.dll;api-ms-win-crt-filesystem-l1-1-0.dll;api-ms-win-crt-heap-l1-1-0.dll;api-ms-win-crt-locale-l1-1-0.dll;api-ms-win-crt-math-l1-1-0.dll;api-ms-win-crt-private-l1-1-0.dll;api-ms-win-crt-process-l1-1-0.dll;api-ms-win-crt-runtime-l1-1-0.dll;api-ms-win-crt-stdio-l1-1-0.dll;api-ms-win-crt-string-l1-1-0.dll;api-ms-win-crt-time-l1-1-0.dll;api-ms-win-crt-utility-l1-1-0.dll;api-ms-win-devices-config-l1-1-1.dll;api-ms-win-devices-query-l1-1-0.dll;api-ms-win-downlevel-advapi32-l1-1-0.dll;api-ms-win-downlevel-kernel32-l1-1-0.dll;api-ms-win-dx-d3dkmt-l1-1-0.dll;api-ms-win-dx-d3dkmt-l1-1-1.dll;api-ms-win-dx-d3dkmt-l1-1-3.dll;api-ms-win-dx-d3dkmt-l1-1-4.dll;api-ms-win-dx-d3dkmt-l1-1-7.dll;api-ms-win-eventing-classicprovider-l1-1-0.dll;api-ms-win-eventing-consumer-l1-1-0.dll;api-ms-win-eventing-consumer-l1-1-1.dll;api-ms-win-eventing-controller-l1-1-0.dll;api-ms-win-eventing-legacy-l1-1-0.dll;api-ms-win-eventing-obsolete-l1-1-0.dll;api-ms-win-eventing-provider-l1-1-0.dll;api-ms-win-eventing-tdh-l1-1-0.dll;api-ms-win-eventlog-legacy-l1-1-0.dll;api-ms-win-gdi-dpiinfo-l1-1-0.dll;api-ms-win-gdi-internal-uap-l1-1-0.dll;api-ms-win-http-time-l1-1-0.dll;api-ms-win-mm-misc-l1-1-0.dll;api-ms-win-mm-misc-l2-1-0.dll;api-ms-win-mm-mme-l1-1-0.dll;api-ms-win-mm-time-l1-1-0.dll;api-ms-win-networking-interfacecontexts-l1-1-0.dll;api-ms-win-ntuser-rectangle-l1-1-0.dll;api-ms-win-ntuser-sysparams-l1-1-0.dll;api-ms-win-ole32-ie-l1-1-0.dll;api-ms-win-oobe-notification-l1-1-0.dll;api-ms-win-power-base-l1-1-0.dll;api-ms-win-power-setting-l1-1-0.dll;api-ms-win-rtcore-ntuser-clipboard-l1-1-0.dll;api-ms-win-rtcore-ntuser-private-l1-1-0.dll;api-ms-win-rtcore-ntuser-private-l1-1-11.dll;api-ms-win-rtcore-ntuser-private-l1-1-2.dll;api-ms-win-rtcore-ntuser-private-l1-1-4.dll;api-ms-win-rtcore-ntuser-private-l1-1-7.dll;api-ms-win-rtcore-ntuser-private-l1-1-9.dll;api-ms-win-rtcore-ntuser-shell-l1-1-0.dll;api-ms-win-rtcore-ntuser-synch-l1-1-0.dll;api-ms-win-rtcore-ntuser-window-l1-1-0.dll;api-ms-win-security-accesshlpr-l1-1-0.dll;api-ms-win-security-activedirectoryclient-l1-1-0.dll;api-ms-win-security-activedirectoryclient-l1-1-1.dll;api-ms-win-security-appcontainer-l1-1-0.dll;api-ms-win-security-audit-l1-1-0.dll;api-ms-win-security-audit-l1-1-1.dll;api-ms-win-security-base-l1-1-0.dll;api-ms-win-security-base-l1-2-0.dll;api-ms-win-security-base-l1-2-1.dll;api-ms-win-security-base-private-l1-1-0.dll;api-ms-win-security-base-private-l1-1-1.dll;api-ms-win-security-capability-l1-1-0.dll;api-ms-win-security-credentials-l1-1-0.dll;api-ms-win-security-credentials-l2-1-0.dll;api-ms-win-security-cryptoapi-l1-1-0.dll;api-ms-win-security-grouppolicy-l1-1-0.dll;api-ms-win-security-isolatedcontainer-l1-1-0.dll;api-ms-win-security-isolationpolicy-l1-2-0.dll;api-ms-win-security-logon-l1-1-0.dll;api-ms-win-security-logon-l1-1-1.dll;api-ms-win-security-lsalookup-ansi-l2-1-0.dll;api-ms-win-security-lsalookup-l1-1-0.dll;api-ms-win-security-lsalookup-l1-1-1.dll;api-ms-win-security-lsalookup-l1-1-2.dll;api-ms-win-security-lsalookup-l2-1-0.dll;api-ms-win-security-lsapolicy-l1-1-0.dll;api-ms-win-security-provider-l1-1-0.dll;api-ms-win-security-sddl-l1-1-0.dll;api-ms-win-security-sddlparsecond-l1-1-0.dll;api-ms-win-security-sddlparsecond-l1-1-1.dll;api-ms-win-security-systemfunctions-l1-1-0.dll;api-ms-win-security-trustee-l1-1-0.dll;api-ms-win-service-core-l1-1-0.dll;api-ms-win-service-core-l1-1-1.dll;api-ms-win-service-core-l1-1-2.dll;api-ms-win-service-core-l1-1-4.dll;api-ms-win-service-management-l1-1-0.dll;api-ms-win-service-management-l2-1-0.dll;api-ms-win-service-private-l1-1-0.dll;api-ms-win-service-private-l1-1-2.dll;api-ms-win-service-private-l1-1-3.dll;api-ms-win-service-private-l1-1-4.dll;api-ms-win-service-winsvc-l1-1-0.dll;api-ms-win-shcore-comhelpers-l1-1-0.dll;api-ms-win-shcore-obsolete-l1-1-0.dll;api-ms-win-shcore-path-l1-1-0.dll;api-ms-win-shcore-registry-l1-1-0.dll;api-ms-win-shcore-registry-l1-1-1.dll;api-ms-win-shcore-scaling-l1-1-0.dll;api-ms-win-shcore-scaling-l1-1-1.dll;api-ms-win-shcore-stream-l1-1-0.dll;api-ms-win-shcore-stream-winrt-l1-1-0.dll;api-ms-win-shcore-sysinfo-l1-1-0.dll;api-ms-win-shcore-taskpool-l1-1-0.dll;api-ms-win-shcore-thread-l1-1-0.dll;api-ms-win-shcore-unicodeansi-l1-1-0.dll;api-ms-win-shell-changenotify-l1-1-0.dll;api-ms-win-shell-namespace-l1-1-0.dll;api-ms-win-shell-shdirectory-l1-1-0.dll;api-ms-win-shell-shellcom-l1-1-0.dll;api-ms-win-shell-shellfolders-l1-1-0.dll;api-ms-win-shlwapi-ie-l1-1-0.dll;api-ms-win-shlwapi-winrt-storage-l1-1-1.dll;api-ms-win-stateseparation-helpers-l1-1-0.dll;api-ms-win-storage-exports-external-l1-1-0.dll;api-ms-win-storage-exports-external-l1-1-2.dll;api-ms-win-storage-exports-internal-l1-1-0.dll;declaredconfiguration.dll;dmenterprisediagnostics.dll;edpcsp.dll;efscore.dll;ext-ms-mf-pal-l2-1-0.dll;ext-ms-onecore-appdefaults-l1-1-0.dll;ext-ms-onecore-appmodel-staterepository-cache-l1-1-0.dll;ext-ms-onecore-appmodel-staterepository-cache-l1-1-2.dll;ext-ms-onecore-appmodel-staterepository-internal-l1-1-3.dll;ext-ms-onecore-appmodel-staterepository-internal-l1-1-4.dll;ext-ms-onecore-appmodel-staterepository-internal-l1-1-5.dll;ext-ms-onecore-dcomp-l1-1-0.dll;ext-ms-onecore-orientation-l1-1-0.dll;ext-ms-onecore-shellchromeapi-l1-1-0.dll;ext-ms-win-adsi-activeds-l1-1-0.dll;ext-ms-win-advapi32-lsa-l1-1-0.dll;ext-ms-win-advapi32-msi-l1-1-0.dll;ext-ms-win-advapi32-npusername-l1-1-0.dll;ext-ms-win-advapi32-ntmarta-l1-1-0.dll;ext-ms-win-advapi32-psm-app-l1-1-0.dll;ext-ms-win-advapi32-registry-l1-1-0.dll;ext-ms-win-advapi32-registry-l1-1-1.dll;ext-ms-win-advapi32-safer-l1-1-0.dll;ext-ms-win-appcompat-aeinv-l1-1-0.dll;ext-ms-win-appcompat-aepic-l1-1-0.dll;ext-ms-win-appcompat-apphelp-l1-1-0.dll;ext-ms-win-appmodel-appexecutionalias-l1-1-0.dll;ext-ms-win-appmodel-appexecutionalias-l1-1-1.dll;ext-ms-win-appmodel-appexecutionalias-l1-1-2.dll;ext-ms-win-appmodel-daxcore-l1-1-0.dll;ext-ms-win-appmodel-deployment-l1-1-0.dll;ext-ms-win-appmodel-shellexecute-l1-1-0.dll;ext-ms-win-appmodel-state-ext-l1-2-0.dll;ext-ms-win-appmodel-usercontext-l1-1-0.dll;ext-ms-win-appmodel-viewscalefactor-l1-1-0.dll;ext-ms-win-appxdeploymentclient-appxdeploy-l1-1-0.dll;ext-ms-win-appxdeploymentclient-appxdeployonecore-l1-1-0.dll;ext-ms-win-audiocore-pal-l1-2-0.dll;ext-ms-win-audiocore-spatial-l1-1-0.dll;ext-ms-win-authz-context-l1-1-0.dll;ext-ms-win-authz-remote-l1-1-0.dll;ext-ms-win-biometrics-winbio-core-l1-1-0.dll;ext-ms-win-ci-management-l1-1-0.dll;ext-ms-win-cng-rng-l1-1-1.dll;ext-ms-win-com-apartmentrestriction-l1-1-0.dll;ext-ms-win-com-clbcatq-l1-1-0.dll;ext-ms-win-com-coml2-l1-1-1.dll;ext-ms-win-com-ole32-l1-1-0.dll;ext-ms-win-com-ole32-l1-1-1.dll;ext-ms-win-com-ole32-l1-1-3.dll;ext-ms-win-com-ole32-l1-1-4.dll;ext-ms-win-com-ole32-l1-1-5.dll;ext-ms-win-com-psmregister-l1-1-0.dll;ext-ms-win-com-sta-l1-1-0.dll;ext-ms-win-com-suspendresiliency-l1-1-0.dll;ext-ms-win-containers-policymanagercli-l1-1-0.dll;ext-ms-win-core-pkeyhelper-l1-1-0.dll;ext-ms-win-core-resourcepolicy-l1-1-0.dll;ext-ms-win-core-winrt-remote-l1-1-0.dll;ext-ms-win-desktopappx-l1-1-0.dll;ext-ms-win-desktopappx-l1-1-3.dll;ext-ms-win-devmgmt-dm-l1-1-0.dll;ext-ms-win-devmgmt-dm-l1-1-2.dll;ext-ms-win-devmgmt-policy-l1-1-0.dll;ext-ms-win-devmgmt-policy-l1-1-1.dll;ext-ms-win-direct2d-desktop-l1-1-0.dll;ext-ms-win-domainjoin-netjoin-l1-1-0.dll;ext-ms-win-driver-setup-l1-1-0.dll;ext-ms-win-driver-setup-wu-l1-1-0.dll;ext-ms-win-driver-setup-wu-l1-1-1.dll;ext-ms-win-dwmapi-ext-l1-1-0.dll;ext-ms-win-dwmapidxgi-ext-l1-1-0.dll;ext-ms-win-dwmapidxgi-ext-l1-1-1.dll;ext-ms-win-dx-d3dkmt-dxcore-l1-1-0.dll;ext-ms-win-dx-d3dkmt-gdi-l1-1-0.dll;ext-ms-win-dx-dxdbhelper-l1-1-0.dll;ext-ms-win-dxcore-internal-l1-1-0.dll;ext-ms-win-dxcore-l1-1-0.dll;ext-ms-win-edputil-policy-l1-1-0.dll;ext-ms-win-edputil-policy-l1-1-1.dll;ext-ms-win-els-elscore-l1-1-0.dll;ext-ms-win-eventing-rundown-l1-1-0.dll;ext-ms-win-feclient-encryptedfile-l1-1-0.dll;ext-ms-win-feclient-encryptedfile-l1-1-3.dll;ext-ms-win-firewallapi-webproxy-l1-1-0.dll;ext-ms-win-fveapi-query-l1-1-0.dll;ext-ms-win-gaming-devicefamily-l1-1-0.dll;ext-ms-win-gdi-clipping-l1-1-0.dll;ext-ms-win-gdi-dc-create-l1-1-0.dll;ext-ms-win-gdi-dc-l1-2-0.dll;ext-ms-win-gdi-dc-l1-2-1.dll;ext-ms-win-gdi-devcaps-l1-1-0.dll;ext-ms-win-gdi-draw-l1-1-0.dll;ext-ms-win-gdi-draw-l1-1-1.dll;ext-ms-win-gdi-draw-l1-1-2.dll;ext-ms-win-gdi-draw-l1-1-3.dll;ext-ms-win-gdi-edgegdi-l1-1-0.dll;ext-ms-win-gdi-font-l1-1-0.dll;ext-ms-win-gdi-font-l1-1-1.dll;ext-ms-win-gdi-font-l1-1-2.dll;ext-ms-win-gdi-font-l1-1-3.dll;ext-ms-win-gdi-internal-desktop-l1-1-0.dll;ext-ms-win-gdi-internal-desktop-l1-1-1.dll;ext-ms-win-gdi-internal-desktop-l1-1-2.dll;ext-ms-win-gdi-internal-desktop-l1-1-3.dll;ext-ms-win-gdi-metafile-l1-1-0.dll;ext-ms-win-gdi-metafile-l1-1-1.dll;ext-ms-win-gdi-metafile-l1-1-2.dll;ext-ms-win-gdi-path-l1-1-0.dll;ext-ms-win-gdi-print-l1-1-0.dll;ext-ms-win-gdi-private-l1-1-0.dll;ext-ms-win-gdi-render-l1-1-0.dll;ext-ms-win-gdi-wcs-l1-1-0.dll;ext-ms-win-gpapi-grouppolicy-l1-1-0.dll;ext-ms-win-gui-dui70-l1-1-0.dll;ext-ms-win-imm-l1-1-0.dll;ext-ms-win-kernel32-appcompat-l1-1-0.dll;ext-ms-win-kernel32-datetime-l1-1-0.dll;ext-ms-win-kernel32-errorhandling-l1-1-0.dll;ext-ms-win-kernel32-file-l1-1-0.dll;ext-ms-win-kernel32-localization-l1-1-0.dll;ext-ms-win-kernel32-package-current-l1-1-0.dll;ext-ms-win-kernel32-package-l1-1-0.dll;ext-ms-win-kernel32-package-l1-1-2.dll;ext-ms-win-kernel32-quirks-l1-1-0.dll;ext-ms-win-kernel32-quirks-l1-1-1.dll;ext-ms-win-kernel32-registry-l1-1-0.dll;ext-ms-win-kernel32-sidebyside-l1-1-0.dll;ext-ms-win-kernelbase-processthread-l1-1-0.dll;ext-ms-win-kernelbase-processthread-l1-1-1.dll;ext-ms-win-mininput-inputhost-l1-1-0.dll;ext-ms-win-mpr-multipleproviderrouter-l1-1-0.dll;ext-ms-win-mrmcorer-resmanager-l1-1-0.dll;ext-ms-win-networking-wcmapi-l1-1-0.dll;ext-ms-win-ntdsapi-activedirectoryclient-l1-1-0.dll;ext-ms-win-ntdsapi-activedirectoryclient-l1-1-1.dll;ext-ms-win-ntuser-dc-access-ext-l1-1-0.dll;ext-ms-win-ntuser-dialogbox-l1-1-0.dll;ext-ms-win-ntuser-dialogbox-l1-1-1.dll;ext-ms-win-ntuser-draw-l1-1-0.dll;ext-ms-win-ntuser-draw-l1-1-1.dll;ext-ms-win-ntuser-gui-l1-1-0.dll;ext-ms-win-ntuser-gui-l1-3-0.dll;ext-ms-win-ntuser-keyboard-l1-1-0.dll;ext-ms-win-ntuser-keyboard-l1-3-1.dll;ext-ms-win-ntuser-message-l1-1-0.dll;ext-ms-win-ntuser-message-l1-1-1.dll;ext-ms-win-ntuser-misc-l1-1-0.dll;ext-ms-win-ntuser-misc-l1-2-0.dll;ext-ms-win-ntuser-misc-l1-5-1.dll;ext-ms-win-ntuser-mouse-l1-1-0.dll;ext-ms-win-ntuser-private-l1-1-0.dll;ext-ms-win-ntuser-private-l1-1-1.dll;ext-ms-win-ntuser-private-l1-2-0.dll;ext-ms-win-ntuser-private-l1-3-1.dll;ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll;ext-ms-win-ntuser-rotationmanager-l1-1-0.dll;ext-ms-win-ntuser-server-l1-1-0.dll;ext-ms-win-ntuser-string-l1-1-0.dll;ext-ms-win-ntuser-synch-l1-1-0.dll;ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll;ext-ms-win-ntuser-window-l1-1-0.dll;ext-ms-win-ntuser-window-l1-1-1.dll;ext-ms-win-ntuser-window-l1-1-2.dll;ext-ms-win-ntuser-window-l1-1-3.dll;ext-ms-win-ntuser-windowclass-l1-1-0.dll;ext-ms-win-ntuser-windowstation-l1-1-0.dll;ext-ms-win-odbc-odbc32-l1-1-0.dll;ext-ms-win-ole32-bindctx-l1-1-0.dll;ext-ms-win-ole32-ie-ext-l1-1-0.dll;ext-ms-win-ole32-oleautomation-l1-1-0.dll;ext-ms-win-oleacc-l1-1-1.dll;ext-ms-win-oobe-query-l1-1-0.dll;ext-ms-win-printer-winspool-l1-1-1.dll;ext-ms-win-profile-extender-l1-1-0.dll;ext-ms-win-profile-userenv-l1-1-0.dll;ext-ms-win-profile-userenv-l1-1-1.dll;ext-ms-win-ras-rasapi32-l1-1-0.dll;ext-ms-win-rdr-davhlpr-l1-1-0.dll;ext-ms-win-reinfo-query-l1-1-0.dll;ext-ms-win-resourcemanager-crm-l1-2-0.dll;ext-ms-win-resources-deployment-l1-1-0.dll;ext-ms-win-resources-languageoverlay-l1-1-0.dll;ext-ms-win-resources-languageoverlay-l1-1-1.dll;ext-ms-win-ro-typeresolution-l1-1-0.dll;ext-ms-win-rpc-ssl-l1-1-0.dll;ext-ms-win-rtcore-gdi-devcaps-l1-1-0.dll;ext-ms-win-rtcore-gdi-object-l1-1-0.dll;ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll;ext-ms-win-rtcore-minuser-input-l1-1-1.dll;ext-ms-win-rtcore-minuser-internal-l1-1-0.dll;ext-ms-win-rtcore-minuser-private-ext-l1-1-0.dll;ext-ms-win-rtcore-minuser-private-ext-l1-1-1.dll;ext-ms-win-rtcore-minuser-private-ext-l1-1-2.dll;ext-ms-win-rtcore-ntuser-cursor-l1-1-0.dll;ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll;ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll;ext-ms-win-rtcore-ntuser-dpi-l1-2-0.dll;ext-ms-win-rtcore-ntuser-dpi-l1-2-1.dll;ext-ms-win-rtcore-ntuser-iam-l1-1-0.dll;ext-ms-win-rtcore-ntuser-integration-l1-1-0.dll;ext-ms-win-rtcore-ntuser-private-l1-1-1.dll;ext-ms-win-rtcore-ntuser-synch-ext-l1-1-0.dll;ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll;ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll;ext-ms-win-rtcore-ntuser-window-ext-l1-1-0.dll;ext-ms-win-secur32-translatename-l1-1-0.dll;ext-ms-win-security-capauthz-l1-1-0.dll;ext-ms-win-security-capauthz-l1-1-1.dll;ext-ms-win-security-chambers-l1-1-0.dll;ext-ms-win-security-credui-internal-l1-1-0.dll;ext-ms-win-security-credui-l1-1-0.dll;ext-ms-win-security-credui-l1-1-1.dll;ext-ms-win-security-cryptui-l1-1-0.dll;ext-ms-win-security-cryptui-l1-1-1.dll;ext-ms-win-security-efs-l1-1-0.dll;ext-ms-win-security-efswrt-l1-1-0.dll;ext-ms-win-security-ngc-local-l1-1-0.dll;ext-ms-win-security-slc-l1-1-0.dll;ext-ms-win-security-winscard-l1-1-0.dll;ext-ms-win-security-winscard-l1-1-1.dll;ext-ms-win-session-usermgr-l1-1-0.dll;ext-ms-win-session-usertoken-l1-1-0.dll;ext-ms-win-session-winsta-l1-1-0.dll;ext-ms-win-session-wtsapi32-l1-1-0.dll;ext-ms-win-setupapi-inf-l1-1-0.dll;ext-ms-win-setupapi-inf-l1-1-1.dll;ext-ms-win-shell-directory-l1-1-0.dll;ext-ms-win-shell-embeddedmode-l1-1-0.dll;ext-ms-win-shell-fileplaceholder-l1-1-0.dll;ext-ms-win-shell-ntshrui-l1-1-0.dll;ext-ms-win-shell-shell32-l1-2-0.dll;ext-ms-win-shell-shell32-l1-2-1.dll;ext-ms-win-shell-shlwapi-l1-1-0.dll;ext-ms-win-shell-shlwapi-l1-2-0.dll;ext-ms-win-shell32-shellcom-l1-1-0.dll;ext-ms-win-shell32-shellfolders-l1-1-0.dll;ext-ms-win-smbshare-browserclient-l1-1-0.dll;ext-ms-win-storage-sense-l1-1-0.dll;ext-ms-win-storage-sense-l1-2-0.dll;ext-ms-win-storage-sense-l1-2-2.dll;ext-ms-win-storage-sense-l1-2-3.dll;ext-ms-win-sxs-oleautomation-l1-1-0.dll;ext-ms-win-sysmain-pfsapi-l1-1-0.dll;ext-ms-win-tsf-msctf-l1-1-0.dll;ext-ms-win-tsf-msctf-l1-1-1.dll;ext-ms-win-ui-viewmanagement-l1-1-0.dll;ext-ms-win-uxtheme-themes-l1-1-0.dll;ext-ms-win-wer-ui-l1-1-0.dll;ext-ms-win-wer-xbox-l1-1-0.dll;ext-ms-win-wer-xbox-l1-1-2.dll;ext-ms-win-wevtapi-eventlog-l1-1-0.dll;ext-ms-win-wevtapi-eventlog-l1-1-2.dll;ext-ms-win-winrt-device-access-l1-1-0.dll;ext-ms-win-winrt-storage-l1-1-0.dll;ext-ms-win-wlan-scard-l1-1-0.dll;ext-ms-win-wwan-wwapi-l1-1-0.dll;ext-ms-win-wwan-wwapi-l1-1-1.dll;ext-ms-win32-subsystem-query-l1-1-0.dll;ext-ms-windowscore-deviceinfo-l1-1-0.dll;fveskybackup.dll;hvsifiletrust.dll;ngcrecovery.dll;policymanagerprecheck.dll;vcruntime140_1d.dll;wpaxholder.dll
The list shows that the vcpkg deps seems to be getting correctly resolved so this might be a runner setup issue. CC @BillyONeal (Can you get the error dialog somehow?)
Unresolved Non API Dlls:
fveskybackup.dll
hvsifiletrust.dll
ngcrecovery.dll
policymanagerprecheck.dll
vcruntime140_1d.dll
wpaxholder.dll
declaredconfiguration.dll
dmenterprisediagnostics.dll
edpcsp.dll
efscore.dll
@Neumann-A vcruntime version 140 and 141 were removed in #23011.
The reason why CI only fails on windows is probably that they put qtwebengine
on CI baseline because its incompatible with Visual Studio 2022:
# qtwebengine:x64-windows has an ICE in VS2022
qtwebengine:x64-windows=fail
The reason for the failure is that vcruntime140_1d.dll
is missing. If qtapplicationmanager
is build as release only the failing command succeeds. It seems like the vcredist
is not completely installed and missing the debug parts.
It seems like the
vcredist
is not completely installed and missing the debug parts.
vcredist does not include vcruntime140_1d.dll
(the debug DLLs are not redistributable)
vcredist does not include vcruntime140_1d.dll (the debug DLLs are not redistributable)
So who put it into my Windows/System32 folder? And even updated 2022-01-05. The VS installer?
vcredist does not include vcruntime140_1d.dll (the debug DLLs are not redistributable)
So who put it into my Windows/System32 folder? And even updated 2022-01-05. The VS installer?
Probably the VS installer, yes.
Host Environment
To Reproduce Steps to reproduce the behavior:
./vcpkg install qtapplicationmanager
Issue observed on CI run: https://dev.azure.com/vcpkg/public/_build/results?buildId=68967&view=logs&j=7922e5c4-0103-5f8f-ad17-45ce9bb98e80
Failure logs
From
install-x64-windows-dbg-out.log
Additional context Edit: Related to VM Update in #23011 CC: @strega-nil-ms @BillyONeal