Fix to temporarily store also intermediate trampoline scan results.
This commit is contained in:
parent
b6f4fcbb7a
commit
f6942f3260
@ -1,7 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
make clean ; make 2>&1 |grep "warning: trampoline" | sort -u > trampolines.out
|
TMP1="trampolines-raw.out"
|
||||||
cat trampolines.out
|
TMP2="trampolines.out"
|
||||||
|
|
||||||
|
make clean ; make 2>$TMP1
|
||||||
|
cat $TMP1 | grep "warning: trampoline" | sort -u > $TMP2
|
||||||
|
cat $TMP2
|
||||||
echo
|
echo
|
||||||
wc -l trampolines.out
|
wc -l $TMP2
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user