tools/ccsym: update for modern versions of gcc

This dumps the predefined preprocessor macros
This commit is contained in:
Bruce Momjian 2015-01-20 13:02:35 -05:00
parent f32a1fa462
commit f259e71dbe
1 changed files with 2 additions and 14 deletions

View File

@ -1,16 +1,4 @@
#!/bin/sh
# src/tools/ccsym
trap "rm -f /tmp/$$.*" 0 1 2 3 15
cd /tmp
cat >$$.c <<EOF
extern int foo;
EOF
for i in `cc -v -c $$.c 2>&1`
do
case "$i" in
-D*) echo "$i" | sed 's/^-D//';;
-A*) echo "$i" | sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
esac
done
# display gcc predefined preprocessor macros
gcc -dM -E - < /dev/null