mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-30 13:53:30 +02:00
filter out G_GNUC stuff when doing the compare.
Thu Nov 25 14:09:41 2004 Manish Singh <yosh@gimp.org> * abicheck.sh: filter out G_GNUC stuff when doing the compare.
This commit is contained in:
committed by
Manish Singh
parent
ccc3c1c409
commit
43fde23cee
@@ -1,3 +1,7 @@
|
||||
Thu Nov 25 14:09:41 2004 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* abicheck.sh: filter out G_GNUC stuff when doing the compare.
|
||||
|
||||
2004-11-23 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gobject.symbols: Typo fix.
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
|
||||
cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' | sort > expected-abi
|
||||
cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | sort > expected-abi
|
||||
nm -D .libs/libgobject-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
|
||||
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||
|
Reference in New Issue
Block a user