[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.6

Linking error (undefined reference to...)

Asked by cjjoy1980 in C Programming Language, Microsoft Visual C++, C++ Builder

Tags: C++, Linkig error (undefined reference to ....)

I am facing a problem related to linking.  Since my source code and Makefile is very big,
I have tried to cut down all other details.  I have global variable defined
in one .cpp file and am trying to use it in another .cpp file using extern.


#include "commonevents.cpp"
int testvariable = 0;
...
Using the variable in /src/libraryfunction.cpp
In src/ libraryfunction.cpp

extern testvariable;
.....

I have one Makefile that resides in the /src directory, I am able to run the "make" and all the .cpp files
compiles successfully. This is generating both "libraryfunction.o" (and other .o file of other .cpp files) and the libraryfile
libmystuff.so.1 which has the listing of all the .o file.


I have another Makefile in the main directory that links all the libraries, when I run this makefile it generates the
error:
"undefined reference to `testvariable'"

On googling, I came to know that it is linking error.  I used the "nm" tool to get
the symbol reference.

bash-3.00$  nm libmystuff.so.1 | grep testvariable
         U testvariable
         
I ran this command within my src directory.


I have couple of questions in this regard:

1.  is the output of nm command (i.e U testvariable ) expected ?   It says that testvariable is
undefined, is this correct?

2. If it is a linker error, which make file should I modify, the one within my src directory (which generated library file)
or the main Makefile which links all the .o 's and libraryfiles ?

Thanks,
joy
 
Related Solutions
 
Loading Advertisement...
 
[+][-]10/04/08 02:26 AM, ID: 22640069Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: C Programming Language, Microsoft Visual C++, C++ Builder
Tags: C++, Linkig error (undefined reference to ....)
Sign Up Now!
Solution Provided By: Infinity08
Participating Experts: 2
Solution Grade: A
 
[+][-]10/06/08 10:37 AM, ID: 22652417Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/17/08 06:44 AM, ID: 23193654Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 / EE_QW_2_20070628