⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 objcopy.test

📁 奇趣公司比较新的qt/emd版本
💻 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 + -