[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Help-gsl] GSL and MSVC
From: |
Timothy Chan |
Subject: |
[Help-gsl] GSL and MSVC |
Date: |
Thu, 16 Nov 2006 03:14:07 -0800 |
I am running Microsoft Visual Studio 7.1. I am trying to run the following
sample code:
#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;
}
But I get the error:
source.obj : error LNK2019: unresolved external symbol _gsl_sf_bessel_J0
referenced in function _main
Can anybody help me?
-Tim Chan
address@hidden
- [Help-gsl] GSL and MSVC,
Timothy Chan <=