mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-04-05 12:30:43 +02:00
[check-def.sh] Ignore magic PPC symbols
It appears that the PowerPC Linux ABI specifies a number of magic functions for register saves and restores which currently appear as exported symbols in the shared object. Ignore them.
This commit is contained in:
parent
ad9a334e2c
commit
db32e5ffcc
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ for def in $defs; do
|
|||
|
||||
{
|
||||
echo EXPORTS
|
||||
eval $get_cairo_syms | grep -v '^_cairo_test_\|^_fini\|^_init' | sort -u
|
||||
eval $get_cairo_syms | grep -v '^_cairo_test_\|^_fini\|^_init\|^_save[fg]pr\|^_rest[fg]pr' | sort -u
|
||||
# cheat: copy the last line from the def file!
|
||||
tail -n1 "$def"
|
||||
} | diff "$def" - || stat=1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue