?? nodebug.sh
字號(hào):
#!/bin/sh## Remove the '-g' debug flag from Makefiles to build release versions# of the libraries in one go.## Run after './configure' and before 'make'.#echo "Removing debug flags from Makefile."echoTARGET="Makefile"if [ "$1" != "" ]; then TARGET="$1"fifor i in `find . -name "$TARGET" -print`; do echo "Patching $i ..." cat $i | sed 's/-g -O2/-O2 -Wl,-s/' | sed 's/-shared/-shared -Wl,-s/' >$i.new cp -f $i.new $idone
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -