From 13e8b5e48c0dc11bc040683d338fdd06409e7cd9 Mon Sep 17 00:00:00 2001 From: Dan Povey Date: Mon, 1 Jan 2018 12:27:56 -0800 Subject: [PATCH] [build] Add new search dir for ATLAS (Thx: Sari Sultan) --- src/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configure b/src/configure index bec077b4a92..fc07cb2fc70 100755 --- a/src/configure +++ b/src/configure @@ -748,7 +748,7 @@ function linux_check_dynamic { function linux_configure_dynamic { if $threaded_atlas; then pt=t; else pt=s; fi # relevant to "fat" libraries, will change later for separate ones if [ -z $ATLASLIBDIR ]; then # Note: it'll pick up the last one below. - for dir in /usr{,/local}/lib{,64}{,/atlas,/atlas-sse2,/atlas-sse3} \ + for dir in /usr{,/local}/lib{,64}{,/atlas,/atlas-sse2,/atlas-sse3,/x86_64-linux-gnu} \ `pwd`/../tools/ATLAS/build/install/lib/ $ATLASROOT/lib; do linux_check_dynamic && ATLASLIBDIR=$dir && ATLASLIBNAME=$atlas_libname done