search for: gsl_config

Displaying 1 result from an estimated 1 matches for "gsl_config".

Did you mean: isl_config
2015 Feb 11
0
CRAN check fails on Solaris, any hints why?
...ke that? This is the first project where I needed configure script. This is my configure.ac which I copied from RcppGSL packages example: AC_INIT([Rlibeemd], 1.3.0) ## Use gsl-config to find arguments for compiler and linker flags ## ## Check for non-standard programs: gsl-config(1) AC_PATH_PROG([GSL_CONFIG], [gsl-config]) ## If gsl-config was found, let's use it if test "${GSL_CONFIG}" != ""; then # Use gsl-config for header and linker arguments (without BLAS which we get from R) GSL_CFLAGS=`${GSL_CONFIG} --cflags` GSL_LIBS=`${GSL_CONFIG} --libs` else AC_MSG_ERROR([gsl-config...