Fix abi checks for ia64.

This commit is contained in:
Matthias Clasen 2005-08-15 05:00:57 +00:00
parent ea7ebd6e8e
commit 30828b953a
6 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2005-08-15 Matthias Clasen <mclasen@redhat.com>
* glib/abicheck.sh, gobject/abicheck.sh: Make the
check work on ia64 too, where some symbols ended up
in yet another section.
2005-08-12 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -1,3 +1,9 @@
2005-08-15 Matthias Clasen <mclasen@redhat.com>
* glib/abicheck.sh, gobject/abicheck.sh: Make the
check work on ia64 too, where some symbols ended up
in yet another section.
2005-08-12 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -1,3 +1,9 @@
2005-08-15 Matthias Clasen <mclasen@redhat.com>
* glib/abicheck.sh, gobject/abicheck.sh: Make the
check work on ia64 too, where some symbols ended up
in yet another section.
2005-08-12 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -1,3 +1,9 @@
2005-08-15 Matthias Clasen <mclasen@redhat.com>
* glib/abicheck.sh, gobject/abicheck.sh: Make the
check work on ia64 too, where some symbols ended up
in yet another section.
2005-08-12 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version

View File

@ -8,6 +8,6 @@ INCLUDES="$INCLUDES -include glibconfig.cpp"
cpp -P -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_VARIABLES -DG_STDIO_NO_WRAP_ON_UNIX -DALL_FILES $INCLUDES "${srcdir:-.}/glib.symbols" | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
rm glibconfig.cpp
nm -D .libs/libglib-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
nm -D -g --defined-only .libs/libglib-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi

View File

@ -8,6 +8,6 @@ INCLUDES="$INCLUDES -include glibconfig.cpp"
cpp -DINCLUDE_VARIABLES -P $INCLUDES -DALL_FILES ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
rm glibconfig.cpp
nm -D .libs/libgobject-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
nm -D -g --defined-only .libs/libgobject-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi