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

📄 elix-link

📁 linux 下的源代码分析阅读器 red hat公司新版
💻
字号:
#! /bin/sh# Usage: elix-link ARGS -- LINKER-ARGSpfx=output=mode=while test "$#" -gt 0; do   arg="$1"   shift   if test "$arg" = "--"; then      break   fi   case "$arg" in    --prefix)       pfx="$1"       shift       ;;    --output)       output="$1"       shift       ;;    --mode)       mode="--$1"       shift       ;;   esacdoneif test -z "$pfx" || test -z "$1" || test -z "$output"; then   echo "elix-link: required option not found" 1>&2   exit 1fi# The `.olix' file is the saved `.runcfg' file from the last time we# actually invoked config.pl.  It's rather ugly that we do this, but# it is easier to take this approach than it is to change the# Makefiles to do this explicitly.run_config=yesif test -f "$pfx.olix"; then   if cmp -s "$pfx.olix" "$pfx.runcfg" > /dev/null 2>&1; then      run_config=no   fifiif test "$run_config" = yes; then   # Run config.pl and update   ${SHELL-/bin/sh} "$pfx.runcfg" || exit 1   cp "$pfx.runcfg" "$pfx.olix"fi# Run the actual link"$@" -o "$output" || exit 1# Clean up with link.pl.exec link.pl --app="$output" --elix-cfg="$pfx.elix" $mode

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -