mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 03:46:17 +01:00
6 lines
263 B
Bash
6 lines
263 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
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
|
||
|
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|