Fix toc.sh, llvm-nm does not recognise '-f P' option

llvm-nm only accepts full name for format option, or just '-P' alias.

Test: build
Bug: 184360305
Change-Id: Ie25f5410403f4dbca564430149a5753e0d48d60d
This commit is contained in:
Yi Kong 2021-04-03 03:20:12 +08:00
parent cb05715e9e
commit 6f43f54264
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ EOF
do_pe() {
"${CLANG_BIN}/llvm-objdump" -x "${infile}" | grep "^Name" | cut -f3 -d" " > "${outfile}.tmp"
"${CLANG_BIN}/llvm-nm" -g -f p "${infile}" | cut -f1-2 -d" " >> "${outfile}.tmp"
"${CLANG_BIN}/llvm-nm" -gP "${infile}" | cut -f1-2 -d" " >> "${outfile}.tmp"
cat <<EOF > "${depsfile}"
${outfile}: \\