Lines Matching refs:outfile

53 …"${CLANG_BIN}/llvm-strip" --strip-all --keep-section=.ARM.attributes "${infile}" -o "${outfile}.tm…
58 "${CLANG_BIN}/llvm-objcopy" "${infile}" "${outfile}.tmp" ${REMOVE_SECTIONS}
63 "${CLANG_BIN}/llvm-objcopy" "${infile}" "${outfile}.tmp" ${REMOVE_SECTIONS}
67 echo "${symbols_to_keep}" | tr ',' '\n' > "${outfile}.symbolList"
70 KEEP_SYMBOLS+="${outfile}.symbolList"
71 "${CLANG_BIN}/llvm-objcopy" -w "${infile}" "${outfile}.tmp" ${KEEP_SYMBOLS}
75 …rm -f "${outfile}.dynsyms" "${outfile}.funcsyms" "${outfile}.keep_symbols" "${outfile}.debug" "${o…
77 …keep-section=.ARM.attributes --remove-section=.comment "${infile}" -o "${outfile}.tmp" || fail=true
80 "${CLANG_BIN}/llvm-objcopy" --only-keep-debug "${infile}" "${outfile}.debug"
81 …file}" --format=posix --defined-only 2> /dev/null | awk '{ print $1 }' | sort >"${outfile}.dynsyms"
82 …d-only | awk '{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 }' | sort > "${outfile}.funcsyms"
83 comm -13 "${outfile}.dynsyms" "${outfile}.funcsyms" > "${outfile}.keep_symbols"
84 echo >> "${outfile}.keep_symbols" # Ensure that the keep_symbols file is not empty.
85 … -S --keep-section .debug_frame --keep-symbols="${outfile}.keep_symbols" "${outfile}.debug" "${out…
86 "${XZ}" --keep --block-size=64k --threads=0 "${outfile}.mini_debuginfo"
88 …CLANG_BIN}/llvm-objcopy" --add-section .gnu_debugdata="${outfile}.mini_debuginfo.xz" "${outfile}.t…
89 …rm -f "${outfile}.dynsyms" "${outfile}.funcsyms" "${outfile}.keep_symbols" "${outfile}.debug" "${o…
91 cp -f "${infile}" "${outfile}.tmp"
96 rm -f "${outfile}.mini_debuginfo.xz"
98 …keep-section=.ARM.attributes --remove-section=.comment "${infile}" -o "${outfile}.tmp" || fail=true
101 "${CREATE_MINIDEBUGINFO}" "${infile}" "${outfile}.mini_debuginfo.xz"
102 …CLANG_BIN}/llvm-objcopy" --add-section .gnu_debugdata="${outfile}.mini_debuginfo.xz" "${outfile}.t…
103 rm -f "${outfile}.mini_debuginfo.xz"
105 cp -f "${infile}" "${outfile}.tmp"
122 "${CLANG_BIN}/llvm-objcopy" --add-gnu-debuglink="${infile}" "${outfile}.tmp"
126 …"${CLANG_BIN}/llvm-strip" --remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.…
127 rm -f "${outfile}.tmp"
128 mv "${outfile}.tmp.no-build-id" "${outfile}.tmp"
135 o) outfile="${OPTARG}" ;;
156 if [ -z "${outfile}" ]; then
191 rm -f "${outfile}.tmp"
213 rm -f "${outfile}"
214 mv "${outfile}.tmp" "${outfile}"
217 ${outfile}: \