Title: | Microsoft Visual C++ bug reports and kits |
Notice: | Register in Topic 2. 5.Last for latest Kit |
Moderator: | DECWET::THOMAS N |
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 |
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.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
495.1 | LNK2013 : Fixup overflow; Try /incremental:NO | DECWET::MUPOPA | Tue Apr 15 1997 11:14 | 8 | |
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.2 | fatal error LNK2013 | SAPEC3::BACHOFER | Wed Apr 16 1997 00:23 | 8 | |
Hello, thank you, it works now with incremental:no HJ Bachofer DEC/SAP Engineering Walldorf/Germany |