From: Jeroen van Vianen <jeroenv@design.nl>
tools.patch patches tools/find_static (use indices to increase performance) and tools/ccsym (no hardcoded paths).
This commit is contained in:
parent
22bd99e462
commit
d30ad52918
@ -1,13 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
trap "/bin/rm -f /tmp/$$.*" 0 1 2 3 15
|
trap "rm -f /tmp/$$.*" 0 1 2 3 15
|
||||||
cd /tmp
|
cd /tmp
|
||||||
/bin/cat >$$.c <<EOF
|
cat >$$.c <<EOF
|
||||||
extern int foo;
|
extern int foo;
|
||||||
EOF
|
EOF
|
||||||
for i in `cc -v -c $$.c 2>&1`
|
for i in `cc -v -c $$.c 2>&1`
|
||||||
do
|
do
|
||||||
case "$i" in
|
case "$i" in
|
||||||
-D*) echo "$i" | /usr/bin/sed 's/^-D//';;
|
-D*) echo "$i" | sed 's/^-D//';;
|
||||||
-A*) /bin/test "2.7.2.1" && echo "$i" | /usr/bin/sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
|
-A*) test "2.7.2.1" && echo "$i" | sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -27,6 +27,11 @@ echo "
|
|||||||
into table debug2
|
into table debug2
|
||||||
from debug;
|
from debug;
|
||||||
|
|
||||||
|
create index idebug on debug(scope,func);
|
||||||
|
create index idebug2 on debug2(func,scope);
|
||||||
|
vacuum debug;
|
||||||
|
vacuum debug2;
|
||||||
|
|
||||||
update debug2
|
update debug2
|
||||||
set scope = '_'
|
set scope = '_'
|
||||||
from debug
|
from debug
|
||||||
|
Loading…
x
Reference in New Issue
Block a user