Skip to main content
Glama
swesmith-repos

MCP Server for WinDbg Crash Analysis

build.ps1763 B
# Launch this script from Developer Command Prompt for Visual Studio $examplesDir = Split-Path -Parent $MyInvocation.MyCommand.Definition $buildDir = "build" $outDir = Join-Path $buildDir "out" # Ensure output directories exist New-Item -ItemType Directory -Path $buildDir -Force | Out-Null New-Item -ItemType Directory -Path $outDir -Force | Out-Null # Build all .cpp files in examples directory Get-ChildItem -Path $examplesDir -Filter *.cpp | ForEach-Object { $base = $_.BaseName $src = $_.FullName $obj = Join-Path $buildDir ($base + ".obj") $exe = Join-Path $outDir ($base + ".exe") Write-Host "Building $src -> $exe ..." cl.exe /nologo /Zi /O2 /MT /DNDEBUG /EHsc /Fo:$obj /Fe:$exe $src /link /INCREMENTAL:NO } Write-Host "Done."

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/swesmith-repos/svnscha__mcp-windbg.20b852b5'

If you have feedback or need assistance with the MCP directory API, please join our Discord server