mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			589 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			589 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Set this environment variable to override the default debugger.
 | |
| #
 | |
| [ -z "$SERENITY_KERNEL_DEBUGGER" ] && SERENITY_KERNEL_DEBUGGER="gdb"
 | |
| 
 | |
| # The QEMU -s option (enabled by default in ./run) sets up a debugger
 | |
| # remote on localhost:1234. So point our debugger there, and inform
 | |
| # the debugger which binary to load symbols, etc from.
 | |
| #
 | |
| exec $SERENITY_KERNEL_DEBUGGER \
 | |
|     -ex "file $(dirname "$0")/../Build/${SERENITY_ARCH:-i686}/Kernel/Kernel" \
 | |
|     -ex 'set arch i386:intel' \
 | |
|     -ex 'target remote localhost:1234' \
 | |
|     -ex "source $(dirname "$0")/serenity_gdb.py" \
 | |
|     "$@"
 | 
