Fix to temporarily store also intermediate trampoline scan results.

This commit is contained in:
Cas Cremers 2018-10-21 23:32:24 +02:00
parent b6f4fcbb7a
commit f6942f3260

View File

@ -1,7 +1,11 @@
#!/bin/sh
#!/bin/bash
make clean ; make 2>&1 |grep "warning: trampoline" | sort -u > trampolines.out
cat trampolines.out
TMP1="trampolines-raw.out"
TMP2="trampolines.out"
make clean ; make 2>$TMP1
cat $TMP1 | grep "warning: trampoline" | sort -u > $TMP2
cat $TMP2
echo
wc -l trampolines.out
wc -l $TMP2