I am trying to compile 64-bit GSL on a Windows 7 machine. Here are the steps I took:
Downloaded and untarred the GSL 1.15 source found here.
Tested that I have a 64-bit version of GCC available in the Cygwin shell, by compiling the minimal program
// simple.C int main() { ; return 0; }
using
x86_64-w64-mingw32-gcc -m64 simple.C -o simple
In the untarred folder, I would like to pass the
x86_64-w64-mingw32-gcc
compiler to./configure
but am not sure how. I took a look at theconfigure
file, but that is huge and appears to have been generated usingautoconf
.