473,378 Members | 1,067 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,378 software developers and data experts.

build error

hey folks,

i've got a linker problem with my VC++ 6.0.
my programm compiles normally, but at linking time i get this error message

myProgramm.obj : error LNK2001: unresolved external symbol "public:
returnType __thiscall externalProgramm::function(some parameters)"

that you find _so often_ on the web and in the faq's and news groups. i'm
SURE i included all important files and path.
has anybody a solution, or might anybody tell me what the __thiscall might
do? i didn't understand the ms help on this subject.

thanx a lot!!!

Jul 19 '05 #1
2 1800
"Wolfgang Rueckert" <ru******@mrt.uka.de> wrote...
i've got a linker problem with my VC++ 6.0.
my programm compiles normally, but at linking time i get this error message
myProgramm.obj : error LNK2001: unresolved external symbol "public:
returnType __thiscall externalProgramm::function(some parameters)"

that you find _so often_ on the web and in the faq's and news groups. i'm
SURE i included all important files and path.
has anybody a solution, or might anybody tell me what the __thiscall might
do? i didn't understand the ms help on this subject.


IIRC, __thiscall means it's a non-static member function.

Linker errors are compiler-specific and most likely mean you
either do not have a definition of some symbol you're accessing
or you have too many of that. You should never be sure you've
included "all important files and path" if it tells you that
something is missing. Check again. If it insists on your error
and you don't know what to do, post to a Visual C++ newsgroup.
Try microsoft.public.vc.language first.

Victor
Jul 19 '05 #2

"Wolfgang Rueckert" <ru******@mrt.uka.de> wrote in message
news:bd**********@news.rz.uni-karlsruhe.de...
hey folks,

i've got a linker problem with my VC++ 6.0.
my programm compiles normally, but at linking time i get this error message
myProgramm.obj : error LNK2001: unresolved external symbol "public:
returnType __thiscall externalProgramm::function(some parameters)"

that you find _so often_ on the web and in the faq's and news groups. i'm
SURE i included all important files and path.
has anybody a solution, or might anybody tell me what the __thiscall might
do? i didn't understand the ms help on this subject.

thanx a lot!!!

Most likely you have called a function which you haven't defined yet, i.e.
class test
{
private:
int i;
int k;
public:
test();
f();
};
test::test() : i(0), k(0)
{
f(); // Calling f() which hasn't been defined yet
}

HTH,
S. Armondi
Jul 19 '05 #3

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

Similar topics

2
by: AIM | last post by:
Error in msvc in building inheritance.obj to build hello.pyd Hello, I am trying to build the boost 1.31.0 sample extension hello.cpp. I can not compile the file inheritance.cpp because the two...
10
by: Douglas Buchanan | last post by:
I am using the following code instead of a very lengthly select case statement. (I have a lot of lookup tables in a settings form that are selected from a ListBox. The data adapters are given a...
5
by: David++ | last post by:
Hi there, I have built a DLL in Visual C++ 6. When I build the DLL it builds fine for the debug version of the DLL (and this DLL works fine), however, I seem unable to build a Release version of...
0
by: ktelep | last post by:
I'm trying to build python 2.4.2 on AIX 5.3 with the IBM xlC compiler as per the notes in the AIX Readme file. Basically my make fails with the errors listed below. I'm calling configure with:...
1
by: | last post by:
I'm having a problem finding the cause for this problem. I have a solution in Visual Studio 2005 that contains two projects -- a Web Site and a Class Library. The web site references the class...
1
by: Ted Zeng | last post by:
Hi, I am new to Python. I am trying to build MySQLdb for my PowerPC PowerMac. I just downloaded the source last week and tried to build it. But I got the error messages as follow. I checked and...
6
by: Soren | last post by:
Hi! I'm trying to extend my python program with some C++ code. Right now I've spent hours just trying to get boost to work! I'm trying to get the example hello.cpp to work. Using Windows XP...
0
by: Darrin Thompson | last post by:
I've been trying to build pyOpenSSL on Windows with Visual Studio 2003. I've hit the message below: building 'OpenSSL.SSL' extension creating build\temp.win32-2.5\Release\src\ssl C:\Program...
5
by: eranshuman | last post by:
Hi, I m very new to perl I m running an API which have the Buil.pl When Im compiling using perl Build.pl I was getting error : Can't locate Module/Build.pm in @INC (@INC contains:...
1
by: Owen Zhang | last post by:
I am trying to build lxml package in SunOS 5.10. I got the following errors. Does anybody know why? $ python setup.py build Building lxml version 2.1. NOTE: Trying to build without Cython,...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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: 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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.