LNK1318: Unexpected PDB error; OK (0)

后端 未结 9 1775
借酒劲吻你
借酒劲吻你 2021-02-12 14:30

I\'m trying to link against a library (libcef_wrapper_dll.lib) that was built with the /MDd flag. My application is build with /MDd and /CLR so should be compatible. The proje

9条回答
  •  难免孤独
    2021-02-12 15:21

    Best solution for me has always been to simply kill the symbol server. I have a batch file on my desktop to do this:

    @for /F "tokens=2 delims= " %%I in ('tasklist^|findstr /I "mspdbsrv.exe"') do taskkill /F /PID %%I>NUL && echo Process killed.
    

提交回复
热议问题