windbg_common.bat 605 B

12345678910
  1. REM Copyright 2021 The Chromium Authors. All rights reserved.
  2. REM Use of this source code is governed by a BSD-style license that can be
  3. REM found in the LICENSE file.
  4. REM Helper batch file for windbg32.bat and windbg64.bat
  5. FOR /f "usebackq tokens=*" %%a in (`python %~dp0win_sdk_dir.py`) do set win_sdk_dir=%%a
  6. echo When debugging processes pass -g -G to suppress process start/end breakpoints, and pass -o to debug child processes.
  7. echo Pass -z to load crash dumps.
  8. echo When launching processes you should use windbg32.bat for x86 processes and you must use windbg64.bat for x64 processes.