From 943182a846cc050a4ab01b88bbd5ede97ad5297e Mon Sep 17 00:00:00 2001 From: Kipp Cannon <kipp.cannon@ligo.org> Date: Thu, 11 Oct 2018 14:49:43 +0900 Subject: [PATCH] gstlal: add raspberry pi support - following input from Steffen --- gstlal/configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gstlal/configure.ac b/gstlal/configure.ac index 281f4e5306..2788b59622 100644 --- a/gstlal/configure.ac +++ b/gstlal/configure.ac @@ -265,10 +265,13 @@ AC_SUBST([PYGOBJECT_LIBS]) # on Debian the file is /usr/lib/x86_64-linux-gnu/libpython2.7.so # on SL7 the file is /usr/lib64/libpython2.7.so +# on raspberry pi the file is /usr/lib/aarch64-linux-gnu/libpython2.7.so AC_SUBST([PYTHON_ABI_FLAGS], []) AC_SUBST([PYTHON_LIB_SUFFIX], [so]) if test -a "/usr/lib/x86_64-linux-gnu/libpython2.7.so" ; then AC_SUBST([PYTHON_LIB_LOC], [/usr/lib/x86_64-linux-gnu]) +elif test -a "/usr/lib/aarch64-linux-gnu/libpython2.7.so" ; then + AC_SUBST([PYTHON_LIB_LOC], [/usr/lib/aarch64-linux-gnu]) elif test -a "/usr/lib64/libpython2.7.so" ; then AC_SUBST([PYTHON_LIB_LOC], [/usr/lib64]) elif test -a "/opt/local/lib/libpython2.7.dylib" ; then -- GitLab