rebuild-testbench.sh: don't build twice with combined "make install"

"make + make install" duplicates many steps, probably because of the
fatal combination of build timestamps + source hash, see PR #3353 for a
similar example.

A single, combined "make install" generates the exact same binary
outputs 30% faster and prints 30% shorter build logs.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2020-10-30 17:46:12 +00:00 committed by Liam Girdwood
parent 137c90bbc6
commit 2aa62e1e65
1 changed files with 1 additions and 2 deletions

View File

@ -25,8 +25,7 @@ rebuild_testbench()
cmake -DCMAKE_INSTALL_PREFIX=install ..
make -j"$(nproc)"
make install
make -j"$(nproc)" install
}
export_CC_with_afl()