mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-01 19:45:33 +08:00
tools/ccsym: update for modern versions of gcc
This dumps the predefined preprocessor macros
This commit is contained in:
parent
f32a1fa462
commit
f259e71dbe
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user