Commit d30ad529 authored by Marc G. Fournier's avatar Marc G. Fournier

From: Jeroen van Vianen <jeroenv@design.nl>

tools.patch patches tools/find_static (use indices to increase
performance) and tools/ccsym (no hardcoded paths).
parent 22bd99e4
#!/bin/sh
trap "/bin/rm -f /tmp/$$.*" 0 1 2 3 15
trap "rm -f /tmp/$$.*" 0 1 2 3 15
cd /tmp
/bin/cat >$$.c <<EOF
cat >$$.c <<EOF
extern int foo;
EOF
for i in `cc -v -c $$.c 2>&1`
do
case "$i" in
-D*) echo "$i" | /usr/bin/sed 's/^-D//';;
-A*) /bin/test "2.7.2.1" && echo "$i" | /usr/bin/sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
-D*) echo "$i" | sed 's/^-D//';;
-A*) test "2.7.2.1" && echo "$i" | sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
esac
done
......@@ -27,6 +27,11 @@ echo "
into table debug2
from debug;
create index idebug on debug(scope,func);
create index idebug2 on debug2(func,scope);
vacuum debug;
vacuum debug2;
update debug2
set scope = '_'
from debug
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment