mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-12 23:53:46 +02:00
don't hardcode lengths for cut, instead split on the third field.
Thu Sep 16 18:42:46 2004 Manish Singh <yosh@gimp.org> * abicheck.sh: don't hardcode lengths for cut, instead split on the third field.
This commit is contained in:
parent
5c7ef4bbce
commit
d8357e2c51
@ -17,6 +17,7 @@ _libs
|
|||||||
.libs
|
.libs
|
||||||
libgobject-1.3.la
|
libgobject-1.3.la
|
||||||
gobject-query
|
gobject-query
|
||||||
|
gobjectalias.h
|
||||||
gobject.rc
|
gobject.rc
|
||||||
glib-genmarshal
|
glib-genmarshal
|
||||||
glib-mkenums
|
glib-mkenums
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Thu Sep 16 18:42:46 2004 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
|
* abicheck.sh: don't hardcode lengths for cut, instead split on
|
||||||
|
the third field.
|
||||||
|
|
||||||
2004-09-16 Matthias Clasen <mclasen@redhat.com>
|
2004-09-16 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
Implement the same PLT reduction technique used in GTK+:
|
Implement the same PLT reduction technique used in GTK+:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | sort > expected-abi
|
cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | sort > expected-abi
|
||||||
nm -D .libs/libgobject-2.0.so | grep " T " | cut -c12- | sort > actual-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
|
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user