|
发表于 2006-1-3 12:46:36
|
显示全部楼层
Normally, this kind of problems are due to missing libraries when linking
To solve, you need to add the result of `pkg-config --libs package_name` to gcc's command line option
Possibly, you also need to add the missing library's path to gcc's library searching path using "-L" option
PS: I recommend a little book called "An introduction to gcc", it should be useful to you |
|