Home | History | Annotate | Download | only in scripts

Lines Matching refs:CROSS_COMPILE

6 #   CROSS_COMPILE: prefix added to readelf, objcopy tools
29 "${CROSS_COMPILE}strip" --strip-all "${infile}" -o "${outfile}.tmp"
33 "${CROSS_COMPILE}objcopy" "${infile}" "${outfile}.tmp" \
34 `"${CROSS_COMPILE}readelf" -S "${infile}" | awk '/.debug_/ {print "-R " $2}' | xargs`
39 if "${CROSS_COMPILE}strip" --strip-all -R .comment "${infile}" -o "${outfile}.tmp"; then
40 "${CROSS_COMPILE}objcopy" --only-keep-debug "${infile}" "${outfile}.debug"
41 "${CROSS_COMPILE}nm" -D "${infile}" --format=posix --defined-only | awk '{ print $$1 }' | sort >"${outfile}.dynsyms"
42 "${CROSS_COMPILE}nm" "${infile}" --format=posix --defined-only | awk '{ if ($$2 == "T" || $$2 == "t" || $$2 == "D") print $$1 }' | sort > "${outfile}.funcsyms"
44 "${CROSS_COMPILE}objcopy" --rename-section .debug_frame=saved_debug_frame "${outfile}.debug" "${outfile}.mini_debuginfo"
45 "${CROSS_COMPILE}objcopy" -S --remove-section .gdb_index --remove-section .comment --keep-symbols="${outfile}.keep_symbols" "${outfile}.mini_debuginfo"
46 "${CROSS_COMPILE}objcopy" --rename-section saved_debug_frame=.debug_frame "${outfile}.mini_debuginfo"
48 "${CROSS_COMPILE}objcopy" --add-section .gnu_debugdata="${outfile}.mini_debuginfo.xz" "${outfile}.tmp"
55 "${CROSS_COMPILE}objcopy" --add-gnu-debuglink="${infile}" "${outfile}.tmp"
120 ${CROSS_COMPILE}nm \
121 ${CROSS_COMPILE}objcopy \
122 ${CROSS_COMPILE}readelf \
123 ${CROSS_COMPILE}strip