From 1b586e62d9c614d7d4a23383209dd7d2ae9eb4d2 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sat, 11 Sep 2021 15:35:46 -0600 Subject: [PATCH] ci: mac: print shared library deps --- build-osx.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-osx.sh b/build-osx.sh index dd29a5de..bd57dcc9 100755 --- a/build-osx.sh +++ b/build-osx.sh @@ -18,6 +18,13 @@ make -j8 testlight || exit 1 make -j8 testqbsp || exit 1 cpack || exit 1 +# print shared libraries used +otool -L ./light/light +otool -L ./qbsp/qbsp +otool -L ./vis/vis +otool -L ./bspinfo/bspinfo +otool -L ./bsputil/bsputil + # run tests ./light/testlight || exit 1 ./qbsp/testqbsp || exit 1