[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference decwet::visual

Title:Microsoft Visual C++ bug reports and kits
Notice:Register in Topic 2. 5.Last for latest Kit
Moderator:DECWET::THOMASN
Created:Tue May 17 1994
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:521
Total number of notes:2938

495.0. "fatal error LNK2013" by SAPEC3::BACHOFER () Tue Apr 15 1997 08:41

Hello,

I have a problem with the linker of VC4.2b an Alpha,
the error does not appear on Intel.

Linker Version is 4.20.6191



yyy.lib (xxx.obj) fatal error LNK2013: 
        Fixup overflow.  Target "??1CFileDialog@@UAA@XZ" is out of range


The LNK2013 error message does not exist in msdev help.


The link statement:
link /OUT:R3INSTMSS.exe /NOLOGO /VERSION:3,0 /SUBSYSTEM:windows 
    /MACHINE:ALPHA /DEBUG "lot of *.obj and *.lib"

The debug info is in a pdb-file.
SAP will not use VC50 in the near future.
If you need a testcase to reproduce the error I can deliver one.



Any ideas are welcome

HJ Bachofer
DEC/SAP Engineering Walldorf/Germany
T.RTitleUserPersonal
Name
DateLines
495.1LNK2013 : Fixup overflow; Try /incremental:NODECWET::MUPOPATue Apr 15 1997 11:148
Usually this means the target function was too far and
it was not possible to create a thunk.

Linker option /DEBUG will force incremental linking.
Add /INCREMENTAL:NO option to do the full, regular link.
This will still provide ALL the DEBUG information.

I would strongly encourage you to move to VC++ 5.0.
495.2fatal error LNK2013SAPEC3::BACHOFERWed Apr 16 1997 00:238
Hello,

thank you, it works now with incremental:no



HJ Bachofer
DEC/SAP Engineering Walldorf/Germany