makeg.sh
来自「unix vnc 协议源码. VNC是一款远程控制工具软件.」· Shell 代码 · 共 14 行
SH
14 行
#! /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 + =
减小字号Ctrl + -
显示快捷键?