|
Home > Archive > Unix Programming > February 2007 > Problems with ld: Unresolved error C++ compiling error
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Problems with ld: Unresolved error C++ compiling error
|
|
| stevenruiz@gmail.com 2007-02-13, 7:18 pm |
| Hi Everyone,
> The problem that I have involves program that searches for a certain string within a file. As seen in the code, I have declared a Strings class which overrides the string class in C++. Inside of this class, it has a function called findStr (replac
es the find in string.h) which will return a 0 when it is able to find an occurrence within the file. If not, it will return a -1.
The Strings.h has the function Get_Line which is defined and the error
is shown below:
Strings.h:
void get_line( istream & );
> ld: Unresolved:
> String::get_line(std::basic_istream <char,
> std::char_traits<char>&> )
> The code segment follows this structure and does compile:
#include "Strings.h"
#include <fstream.h>
int main( int argc, char** argv)
{
fstream File;
Strings End_Of_Line;
File.open("/users/netgrps/sf305/test.txt", ios::in);
Strings output = "", Stored_Message="", Line(End_Of_Line);
int num_of_hits=0;
while( ! File.eof())
{
if(Line.findStr("Stat:") != 0)
{
num_of_hits++;
if(num_of_hits == 2)
break;
}
if(num_of_hits == 1)
Stored_Message += Line;
Line.get_line(File);
End_Of_Line = Line;
}
cout << Stored_Message << endl;
}
I opened the library that Strings.h is compiled into with the command
"nm -print" and the method exists. Any idea what may be the problem?
| |
| red floyd 2007-02-13, 7:18 pm |
| stevenruiz@gmail.com wrote:
> Hi Everyone,
>
ces the find in string.h) which will return a 0 when it is able to find an occurrence within the file. If not, it will return a -1.[vbcol=seagreen]
>
> The Strings.h has the function Get_Line which is defined and the error
> is shown below:
>
> Strings.h:
>
> void get_line( istream & );
>
>
>
>
>
>
> #include "Strings.h"
> #include <fstream.h>
Fstream.h is non-standard. Should be
#include <fstream>
using std::fstream;
>
> int main( int argc, char** argv)
> {
> fstream File;
> Strings End_Of_Line;
> File.open("/users/netgrps/sf305/test.txt", ios::in);
> Strings output = "", Stored_Message="", Line(End_Of_Line);
> int num_of_hits=0;
>
>
> while( ! File.eof())
>
> {
> if(Line.findStr("Stat:") != 0)
> {
> num_of_hits++;
>
> if(num_of_hits == 2)
> break;
> }
>
> if(num_of_hits == 1)
> Stored_Message += Line;
>
> Line.get_line(File);
> End_Of_Line = Line;
>
> }
> cout << Stored_Message << endl;
> }
>
> I opened the library that Strings.h is compiled into with the command
> "nm -print" and the method exists. Any idea what may be the problem?
>
| |
| John Harrison 2007-02-13, 7:18 pm |
| stevenruiz@gmail.com wrote:
> Hi Everyone,
>
>
es the find in string.h) which will return a 0 when it is able to find an occurrence within the file. If not, it will return a -1.[vbcol=seagreen]
>
>
> The Strings.h has the function Get_Line which is defined and the error
> is shown below:
>
> Strings.h:
>
> void get_line( istream & );
>
>
>
>
>
>
>
>
>
> #include "Strings.h"
> #include <fstream.h>
>
> int main( int argc, char** argv)
> {
> fstream File;
> Strings End_Of_Line;
> File.open("/users/netgrps/sf305/test.txt", ios::in);
> Strings output = "", Stored_Message="", Line(End_Of_Line);
> int num_of_hits=0;
>
>
> while( ! File.eof())
>
> {
> if(Line.findStr("Stat:") != 0)
> {
> num_of_hits++;
>
> if(num_of_hits == 2)
> break;
> }
>
> if(num_of_hits == 1)
> Stored_Message += Line;
>
> Line.get_line(File);
> End_Of_Line = Line;
>
> }
> cout << Stored_Message << endl;
> }
>
> I opened the library that Strings.h is compiled into with the command
> "nm -print" and the method exists. Any idea what may be the problem?
>
Are you sure you are linking your program with the library containing
get_line? Have you got consistant compiler flags etc. for the library
compile and the program compile? Are you using shared libraries or
static libaries, etc. etc.
Clearly you are using your tools incorrectly but this isn't really a C++
issue, it's a tools issue. Suggest you ask on a different group, and
supply a bit more information. I'd guess it's the *way* you are
compiling and linking, not the code that you are compiling and linking.
john
|
|
|
|
|