?? objcopy.test
字號:
#!/bin/shTEST_PATH=`dirname $0`SEP_DEBUG_SUPPORT=noCOMPILER=$1VERBOSE=$2echo "int main() { return 0; }" > objcopy_test.cppif $TEST_PATH/which.test objcopy >/dev/null 2>&1 && $COMPILER -g -o objcopy_test objcopy_test.cpp >/dev/null 2>&1; then objcopy --only-keep-debug objcopy_test objcopy_test.debug >/dev/null 2>&1 \ && objcopy --strip-debug objcopy_test >/dev/null 2>&1 \ && objcopy --add-gnu-debuglink=objcopy_test.debug objcopy_test >/dev/null 2>&1 \ && SEP_DEBUG_SUPPORT=yes firm -f objcopy_test objcopy_test.debug objcopy_test.cpp# doneif [ "$SEP_DEBUG_SUPPORT" != "yes" ]; then [ "$VERBOSE" = "yes" ] && echo "Separate debug info support disabled." exit 0else [ "$VERBOSE" = "yes" ] && echo "Separate debug info support enabled." exit 1fi
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -