I need to write some C code using GSL (GNU Scientific Library), and have never used libraries before.
I am a Physicist, not a computer scientist, and struggle with a lot of the jargon in the GNU documentation.
For the last few hours I've been thoroughly confused on how to use GSL on a Windows 7 machine. I've tried reading a lot of questions on this site as well as others, but a lot of the jargon goes over my head.
Normally, when I write a program I do the following steps:
Open notepad++, include any of my own header files and write my code.
Compile my program by opening the Windows Command prompt and typing:
gcc -Wall -std=c99 -o myfile myfile.c
I made gcc an Environment Variable, and installed gcc by installing CodeBlocks for Windows (however, I don't use codeblocks).
HOW TO INSTALL GSL:
Downloaded GSL for Windows from: http://gnuwin32.sourceforge.net/packages/gsl.htm
Installed it on the Desktop, so that my Path will have no space characters (I've read spaces in the Path can be a problem).
Set my Path Environment Variable to the location of the .dll's:
C:\Users\Rohan\Desktop\GnuWin32\bin;
Attempted to compile the GSL example program:
#include <stdio.h> #include <gsl/gsl_sf_bessel.h> int main (void) { double x = 5.0; double y = gsl_sf_bessel_J0 (x); printf ("J0(%g) = %.18e\n", x, y); return 0; }
5.I called the compiler as follows:
C:\Users\Rohan\Desktop>gcc -Wall -I"C:\Users\Rohan\Desktop\GnuWin32\include" -L"C:\Users\Rohan\Desktop\GnuWin32\lib" -lgslcblas -lgsl -lm -o test test.c
This resulted in the following error message:
C:\Users\Rohan\AppData\Local\Temp\ccW8cO7I.o:test.c:(.text+0x30): undefined reference to `gsl_sf_bessel_J0'
collect2: ld returned 1 exit status
Most of this was done with little understanding, due to not having a background in CS.
Am I even on the right track? Is there an easy step by step guide, in non-technical language I can follow to get this working?