about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm.h')
0 files changed, 0 insertions, 0 deletions
2020-02-21 00:53:05 -0700 committer GitHub <noreply@github.com> 2020-02-21 08:53:05 +0100 Make gdb script work on mac and linux; add windows gdb script (#13453)' href='/ahoang/Nim/commit/bin/nim-gdb.bat?h=devel&id=3667fd9f426eac968c326b3dc9571b7b7e8fef67'>3667fd9f4 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14




                                                    
                                                             

                    


                                                         


                    
@echo off
for %%i in (nim.exe) do (set NIM_BIN=%%~dp$PATH:i)

for %%i in ("%NIM_BIN%\..\") do (set NIM_ROOT=%%~fi)

set @GDB_PYTHON_MODULE_PATH=%NIM_ROOT%\tools\debug\nim-gdb.py
set @NIM_GDB=gdb.exe

@echo source %@GDB_PYTHON_MODULE_PATH%> wingdbcommand.txt
%@NIM_GDB% --command="wingdbcommand.txt" %*
del wingdbcommand.txt /f /q

EXIT /B %ERRORLEVEL%
@echo on