mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
84fb311f3d
Wed Aug 11 22:56:55 2004 Matthias Clasen <maclas@gmx.de> * abicheck.sh: Check all symbols.
6 lines
214 B
Bash
Executable File
6 lines
214 B
Bash
Executable File
#! /bin/sh
|
|
|
|
cpp -P -DINCLUDE_INTERNAL_SYMBOLS gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
|
|
nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -c12- | sort > actual-abi
|
|
diff -u expected-abi actual-abi
|