Lines Matching refs:keep_symbols
83 KEEP_SYMBOLS="-w --strip-unneeded-symbol=* --keep-symbols="
84 KEEP_SYMBOLS+="${outfile}.symbolList"
86 "${CROSS_COMPILE}objcopy" "${infile}" "${outfile}.tmp" ${KEEP_SYMBOLS}
90 rm -f "${outfile}.dynsyms" "${outfile}.funcsyms" "${outfile}.keep_symbols" "${outfile}.debug" "${outfile}.mini_debuginfo" "${outfile}.mini_debuginfo.xz"
105 comm -13 "${outfile}.dynsyms" "${outfile}.funcsyms" > "${outfile}.keep_symbols"
106 echo >> "${outfile}.keep_symbols" # Ensure that the keep_symbols file is not empty.
108 "${CROSS_COMPILE}objcopy" -S --remove-section .gdb_index --remove-section .comment --keep-symbols="${outfile}.keep_symbols" "${outfile}.mini_debuginfo"
116 rm -f "${outfile}.dynsyms" "${outfile}.funcsyms" "${outfile}.keep_symbols" "${outfile}.debug" "${outfile}.mini_debuginfo" "${outfile}.mini_debuginfo.xz"
150 keep-symbols) keep_symbols=true ;;
175 if [ ! -z "${keep_symbols}" -a ! -z "${keep_mini_debug_info}" ]; then
180 if [ ! -z "${symbols_to_keep}" -a ! -z "${keep_symbols}" ]; then
192 if [ ! -z "${keep_symbols}" ]; then