Browse Source

Test for the now-automatically exported variable AMDAPPSDKROOT when looking for the presence of the OpenCL headers.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
55b8f2e06e
  1. 12
      configure.ac

12
configure.ac

@ -104,14 +104,18 @@ case $target in
;; ;;
esac esac
if test "x$ATISTREAMSDKROOT" != x; then
if test "x$have_x86_64" = xtrue; then if test "x$have_x86_64" = xtrue; then
ATI_STREAM_ARCH_DIR=x86_64 ARCH_DIR=x86_64
else else
ATI_STREAM_ARCH_DIR=x86 ARCH_DIR=x86
fi fi
if test "x$ATISTREAMSDKROOT" != x; then
OPENCL_FLAGS="-I$ATISTREAMSDKROOT/include $OPENCL_FLAGS" OPENCL_FLAGS="-I$ATISTREAMSDKROOT/include $OPENCL_FLAGS"
OPENCL_LIBS="-L$ATISTREAMSDKROOT/lib/$ATI_STREAM_ARCH_DIR $OPENCL_LIBS" OPENCL_LIBS="-L$ATISTREAMSDKROOT/lib/$ARCH_DIR $OPENCL_LIBS"
elif test "x$AMDAPPSDKROOT" != x; then
OPENCL_FLAGS="-I$AMDAPPSDKROOT/include $OPENCL_FLAGS"
OPENCL_LIBS="-L$AMDAPPSDKROOT/lib/$ARCH_DIR $OPENCL_LIBS"
fi fi
cpumining="no" cpumining="no"

Loading…
Cancel
Save