473,387 Members | 1,534 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Compiling with GSL

Hello,

I am having somre problems with the GSL library from GNU. I am trying to do a
HelloWorld example but it doesn't link well.

#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;
}

and the command is
g++ -I/usr/local/include/gsl test.cpp -o test

but it doesn't work at all on Linux.
My GSL headers are in /usr/local/include/gsl and the error is

/tmp/cc4wOtbY.o: In function `main':
test.cpp:(.text+0x36): undefined reference to `gsl_sf_bessel_J0'
collect2: ld returned 1 exit status

Thanks a lot for your help.

Marcelo
Feb 5 '06 #1
3 11799
Marcelo wrote:
Hello,

I am having somre problems with the GSL library from GNU. I am trying to do a
HelloWorld example but it doesn't link well.

#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;
}

and the command is
g++ -I/usr/local/include/gsl test.cpp -o test

but it doesn't work at all on Linux.
My GSL headers are in /usr/local/include/gsl and the error is

/tmp/cc4wOtbY.o: In function `main':
test.cpp:(.text+0x36): undefined reference to `gsl_sf_bessel_J0'
collect2: ld returned 1 exit status


You must link with the GSL library, append something like -lgsl
(I don't know the exact library name, check the GSL documentation).

Regards, Stephan

Feb 5 '06 #2
Marcelo wrote:
Hello,

I am having somre problems with the GSL library from GNU. I am trying to
do a HelloWorld example but it doesn't link well.

#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;
}

and the command is
g++ -I/usr/local/include/gsl test.cpp -o test

but it doesn't work at all on Linux.
My GSL headers are in /usr/local/include/gsl and the error is

/tmp/cc4wOtbY.o: In function `main':
test.cpp:(.text+0x36): undefined reference to `gsl_sf_bessel_J0'
collect2: ld returned 1 exit status


The compiler finds the headers. But you need to tell the linker to reference
the actual precompiled library. The ways of doing this are platform
specific and off topic in this group. Very likely the documentation for
your compiler and the documentation for GSL contain information about what
you need to do. Since you mentioned Linux, I would guess that there is a
command line option that you forgot.
Best

Kai-Uwe Bux

Feb 5 '06 #3
Stephan Brönnimann wrote:
Marcelo wrote:
Hello,

I am having somre problems with the GSL library from GNU. I am trying to do a
HelloWorld example but it doesn't link well.

#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;
}

and the command is
g++ -I/usr/local/include/gsl test.cpp -o test

but it doesn't work at all on Linux.
My GSL headers are in /usr/local/include/gsl and the error is

/tmp/cc4wOtbY.o: In function `main':
test.cpp:(.text+0x36): undefined reference to `gsl_sf_bessel_J0'
collect2: ld returned 1 exit status

You must link with the GSL library, append something like -lgsl
(I don't know the exact library name, check the GSL documentation).

Regards, Stephan

thanks a lot,

i have found my problem with the -lgsl -lgslcblas -lm

MArcelo
Feb 5 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Martin Bless | last post by:
I need to access a MSSQL database (MS-Sql, not MySQL!)and would very much like to use mssql-0.09.tar.gz which is available from http://www.object-craft.com.au/projects/mssql/download.html ...
3
by: modemer | last post by:
Hello, I got weird compiling message similar like following when I compiled my simple code on Sun 5.8 with CC WorkShop 6 update 2 C++ 5.3. CC -g -o myclass.o -c myclass.cpp CC -g -o main.o...
0
by: David W. Fenton | last post by:
Today I was working on a hideous old app that I created a long time ago that does a lot of showing/hiding/resizing of fields on one of the forms. I had used constants to store reference values for...
4
by: Aaron Queenan | last post by:
When I build a C++ library to .NET using the managed C++ compiler, I get the following error message: Linking... LINK : error LNK2020: unresolved token (0A000005) _CrtDbgReport LINK : error...
2
by: Rudy Ray Moore | last post by:
Hi guys, I just upgraded to "Visual Studio .net 2003 7.1 c++" from VS6. Some things I like (proper for loop variable scoping, for example), but some other things are troubling me. One...
1
by: Jim Heavey | last post by:
Hello, trying to round out my knowlege here about compiling. To date I have used VS.Net to do all my compiling "majically", but I want to understand how to do it on my own, should the need ever...
10
by: Christina N | last post by:
When compiling my ASP.Net application, VS puts the new DLL under the local cached directory 'VSWebCache' in stead of on the server. How can I make it save the DLL file on the server when compiling?...
2
by: Justin Naidl | last post by:
A group of friends and I are doing a RPG (role-playing game) maker for a school project. It occured to us, however, that if you want the user to be able to have almost complete control over the...
8
by: WebSnozz | last post by:
I have an application written in C that does a lot of low level stuff. It does a lot of things like casting from void*'s. I want to create a new GUI for it in either C# or MC++, but reuse the...
0
by: =?Utf-8?B?amVmZmVyeQ==?= | last post by:
i need help compiling code dynamically it may involve some reflection so if any one is any good in that field or compiling code this would be a great time to show me what you know. by the way my...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.