Search code examples
windowswindowdirectxdirectx-11direct3d

I got error "Information not available, no symbols loaded for d3dcompiler_47.dll" from D3DCompile function


I got error "Information not available, no symbols loaded for d3dcompiler_47.dll" from D3DCompile function. But dependency walker show d3dcompiler_47.dll is loaded and D3DCompile function is also loaded. I can't find how to fix this.


Solution

  • This is not an error. It's a "warning" from the debugger that it can't find debugging symbols for that library. It will still run and work just fine.

    Symbols for Microsoft binaries are available from Microsoft Symbol Server.

    For using the symbol server from Visual Studio, see Microsoft Docs.

    See also this blog post.