Jump to content

gcc compile error [solved]


Recommended Posts

I have a little problem like this.

 

I put: my_header.h in /usr/local/include/mylib and its libraries in /usr/local/lib/mylib

 

And then I write a small C script like this:

 

/* source.c */

#include <mylib/my_header.h>

int main()
{
my_function();

return 0;
}

 

I compile it:

shell> gcc -o run source.c

 

and got error:

undefined reference to 'my_funtion'

 

what happened? Can some1 explain and gimme solution?

Tks so much.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...