📄 makeg.sh
字号:
#! /bin/sh# makeg - run "make" with options necessary to make a debuggable executable# $XConsortium: makeg.sh /main/4 1996/06/13 11:45:08 ray $# set GDB=1 in your environment if using gdb on Solaris 2.make="${MAKE-make}"flags="CDEBUGFLAGS=-g CXXDEBUGFLAGS=-g"# gdb on Solaris needs the stabs included in the executabletest "${GDB+yes}" = yes && flags="$flags -xs"exec "$make" $flags LDSTRIPFLAGS= ${1+"$@"}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -