Debug build failing under Windows x86 uuid.lib
Opened this issue · 3 comments
8> [2279/2367] LINK force_mic_volume_max.exe force_mic_volume_max.exe.pdb
8> FAILED: force_mic_volume_max.exe force_mic_volume_max.exe.pdb
8> C:/Users/VM/Desktop/libwebrtc/depot_tools/python276_bin/python.exe ../../build/toolchain/win/tool_wrapper.py link-wrapper environment.x64 False link.exe /nologo /OUT:./force_mic_volume_max.exe /PDB:./force_mic_volume_max.exe.pdb @./force_mic_volume_max.exe.rsp
8> uuid.lib(unknwn_i.obj) : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance
8>LINK : warning LNK4075: ignoring '/INCREMENTAL' due to '/LTCG' specification
8>LINK : error LNK1218: warning treated as error; no output file generated
Fixed in refactor-depot-tools
branch
It seems to be caused by uuid.lib being defunct inside a specific version of the Windows 10 SDK: https://webcache.googleusercontent.com/search?q=cache:RH6ta2ufy9gJ:https://connect.microsoft.com/VisualStudio/feedback/details/2564511/linker-warning-uuid-lib-shguids2-obj-msil-netmodule-or-module-compiled-with-gl-found+&cd=3&hl=fr&ct=clnk&gl=fr
Problem is related to wrong version of (x86) uuid.lib. After installation of VS2015 Update 2 I had file with size 8 532 830 bytes, date 29.10.2015, MD5 E21C9F14784D80BA232D0C3AC72D99FE.
I just reinstalled SDK 10586 (through VS installer) and now I have file with size 8 695 266, date 19.11.2015, MD5 1158DA00BA24B38A7043CBADED294A3F.
Problem is gone.
Still crashing on my own machine, I'll try with another SDK later.