mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 00:46:16 +01:00
45698f6ecf
2004-10-26 Matthias Clasen <mclasen@redhat.com> * glib/glib.symbols: Add new symbols. * abicheck.sh: Don't include symbols which are just in the symbols list for .defs file compatibility.
6 lines
242 B
Bash
Executable File
6 lines
242 B
Bash
Executable File
#! /bin/sh
|
|
|
|
cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | 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
|