我试图使用MinGW构建GSL版本1.16,但我遇到了一些问题。我跟着these instructions,其中涉及从sh.exe中调用这些命令。
tar zxvf <the name of your gsl source package>
cd gsl-<the version number of your gsl source package>
./configure --enable-static=yes --enable-shared=yes --prefix=/c/GSL-<version number of gsl source package>
make
make install
我在make
放弃之前获得了这些消息。
/usr/bin/sed: can't read <my last name>/gsl-1.16/cblas/libgslcblas.la: No such file or directory
libtool: link: `<my last name>/gsl-1.16/cblas/libgslcblas.la' is not a valid libtool archive
make[2]: *** [libgsl.la] Error 1
make[2]: Leaving directory `/usr/home/<my full name>/gsl-1.16'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/home/<my full name>/gsl-1.16'
make: *** [all] Error 2
任何人都能解释一下吗?它可能与其中一个涉及我的姓氏之间的空格的文件路径有关吗?或者,有没有人知道我安装GSL的另一种方法,它确实适用于他们?