glib/gobject/abicheck.sh

6 lines
261 B
Bash
Raw Normal View History

#! /bin/sh
2004-11-02 22:53:23 +01:00
cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' | 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