473,387 Members | 3,810 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,387 software developers and data experts.

linker error fixup overflow at 'seg:xxxx' h,target = 'symbol' in module 'module'

What are the reasons of that message ?
linker error fixup overflow at 'seg:xxxx' h,target = 'symbol' in module 'module'
I am just compiling a small program under Borland C++ ver 3.

#include "iostream.h"
main()
{
cout << "hello world";
return 0;
}
Jul 22 '05 #1
4 4929
hp******@yahoo.com wrote:
What are the reasons of that message ?
linker error fixup overflow at 'seg:xxxx' h,target = 'symbol' in module 'module'
I am just compiling a small program under Borland C++ ver 3.

#include "iostream.h"
main()
{
cout << "hello world";
return 0;
}


The modern way to do that is:

#include <iostream>
int main()
{
std::cout <<"hello world";
return 0;
}

But I'm not sure about your compiler if it is modern enough to
understand namespaces. But at least your program should be:

#include <iostream.h>
int main()
{
cout << "hello world";
return 0;
}

And this might work for older compilers also, unless you want to upgrade
your compiler. ( Unless the ver 3 is the modern one, I really don't
know, it was just a guess from the code you provided. )
Jul 22 '05 #2
hp******@yahoo.com wrote:
What are the reasons of that message ?
linker error fixup overflow at 'seg:xxxx' h,target = 'symbol' in module 'module'
I am just compiling a small program under Borland C++ ver 3.

#include "iostream.h"
main()
{
cout << "hello world";
return 0;
}


The modern way to do that is:

#include <iostream>
int main()
{
std::cout <<"hello world";
return 0;
}

But I'm not sure about your compiler if it is modern enough to
understand namespaces. But at least your program should be:

#include <iostream.h>
int main()
{
cout << "hello world";
return 0;
}

And this might work for older compilers also, unless you want to upgrade
your compiler. ( Unless the ver 3 is the modern one, I really don't
know, it was just a guess from the code you provided. )
Jul 22 '05 #3
hp******@yahoo.com wrote:
#include "iostream.h"
main()
{
cout << "hello world";
return 0;
}


http://groups.google.com/groups?thre...jlob%404ax.com

--
Regards,
Buster.
Jul 22 '05 #4
hp******@yahoo.com wrote:
#include "iostream.h"
main()
{
cout << "hello world";
return 0;
}


http://groups.google.com/groups?thre...jlob%404ax.com

--
Regards,
Buster.
Jul 22 '05 #5

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

Similar topics

6
by: Bob | last post by:
Declaring a module level form object in multiple froms within a project to show another project form causes a stack overflow and other assorted errors. Can anyone help?
0
by: Neal | last post by:
Hi I am trying to use a 3rd party DLL in my app, (WebService and/or WebApp) I set the references to it, use its public functions and properties OK in Dev mode but when I run it, i get the...
4
by: hpy_awad | last post by:
What are the reasons of that message ? linker error fixup overflow at 'seg:xxxx' h,target = 'symbol' in module 'module' I am just compiling a small program under Borland C++ ver 3. #include...
3
by: Ney André de Mello Zunino | last post by:
Hello. I would appreciate if somebody could assist me with an error message I am getting from the Microsoft WinDbg 6.3 debugging tool. I am not familiar with it, since I have just downloaded it....
5
by: VanKha | last post by:
Hi everyone , I've just read a book on Computer Systems.(Computer Systems:A programmer's perspective ) . On the part of "Linking" , the author talks about strong/weak symbol and as an example for...
0
by: Nilam2477 | last post by:
I have an application which is converted from VC6 to VC7.1 (.net 2003) I'm trying to debug in .net 2003 i need to check the return value HRESULT value. I have declared hr as HRESULT hr = S_OK;...
0
by: John [H2O] | last post by:
Hello, I have a module created from a Fortran file to read in unformatted binary fortran output. It works fine for some datasets, but crashes with others. The strange thing is it will loop...
0
by: John [H2O] | last post by:
I can try, would you mind giving very brief instructions on how to 'run it under gdb'... thanks! I'll post results over at numpy-discussions. Robert Kern-2 wrote: -- View this message in...
2
by: whitechan | last post by:
Hi, I have been experiencing problems compiling my latest gnu compile code nested in c program, which runs on ARM7. the code : #if defined ARM_V6 __asm void RV_FASTCALL C_EdgeFilter4x4_RV8(...
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.