summaryrefslogtreecommitdiffstats
path: root/make/scripts/check-glibc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make/scripts/check-glibc.sh')
-rw-r--r--make/scripts/check-glibc.sh24
1 files changed, 14 insertions, 10 deletions
diff --git a/make/scripts/check-glibc.sh b/make/scripts/check-glibc.sh
index 9773449..e591c57 100644
--- a/make/scripts/check-glibc.sh
+++ b/make/scripts/check-glibc.sh
@@ -1,22 +1,26 @@
#! /bin/bash
+BDIR=$1
+shift
+
SDIR=`dirname $0`
-XDIR=$SDIR/../../make/lib/toolchain
RDIR=$SDIR/../../..
function check_glibc() {
- OBJDUMP=$1/bin/objdump
echo "------------------------------------------------------------"
- echo $2 via $OBJDUMP
+ echo $1 via objdump
echo
- $OBJDUMP -T $2 | grep GLIBC | awk ' { print $5 " " $6 } ' | sort
+ objdump -T $1 | grep GLIBC | awk ' { print $5 " " $6 } ' | sort
echo "------------------------------------------------------------"
}
-check_glibc $XDIR/armsf-linux-gnueabi $SDIR/../ $RDIR/gluegen/build-linux-armv6/obj/libgluegen-rt.so
-check_glibc $XDIR/armhf-linux-gnueabi $RDIR/gluegen/build-linux-armv6hf/obj/libgluegen-rt.so
-check_glibc $XDIR/armsf-linux-gnueabi $RDIR/joal/build-linux-armv6/obj/libopenal.so
-check_glibc $XDIR/armsf-linux-gnueabi $RDIR/joal/build-linux-armv6/obj/libjoal.so
-check_glibc $XDIR/armhf-linux-gnueabi $RDIR/joal/build-linux-armv6hf/obj/libopenal.so
-check_glibc $XDIR/armhf-linux-gnueabi $RDIR/joal/build-linux-armv6hf/obj/libjoal.so
+check_glibc $RDIR/gluegen/$BDIR/obj/libgluegen-rt.so
+check_glibc $RDIR/joal/$BDIR/obj/libopenal.so
+check_glibc $RDIR/joal/$BDIR/obj/libjoal.so
+check_glibc $RDIR/jogl/$BDIR/nativewindow/obj/libnativewindow_awt.so
+check_glibc $RDIR/jogl/$BDIR/nativewindow/obj/libnativewindow_x11.so
+check_glibc $RDIR/jogl/$BDIR/jogl/obj/libjogl_desktop.so
+check_glibc $RDIR/jogl/$BDIR/jogl/obj/libjogl_mobile.so
+check_glibc $RDIR/jogl/$BDIR/jogl/obj/libjogl_cg.so
+check_glibc $RDIR/jogl/$BDIR/newt/obj/libnewt.so