刚装的vs2008英文版,系统为win7系统,机子上还装有vc6.0的英文版,每次debug的时候都会弹出一个link的错误。
1>------ Build started: Project: TestLink, Configuration: Debug Win32 ------
1>Compiling...
1>stdafx.cpp
1>Compiling...
1>TestLink.cpp
1>TestLinkDlg.cpp
1>Generating Code...
1>Compiling resources...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
1>Copyright (C) Microsoft Corporation.  All rights reserved.
1>Compiling manifest to resources...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
1>Copyright (C) Microsoft Corporation.  All rights reserved.
1>Linking...
1>Embedding manifest...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
1>Copyright (C) Microsoft Corporation.  All rights reserved.
1>LINK : fatal error LNK1000: Internal error during IncrBuildImage
1>  Version 9.00.21022.08
1>  ExceptionCode            = C0000005
1>  ExceptionFlags           = 00000000
1>  ExceptionAddress         = 0012FCF7 (000B0000) "D:\Program Files\Microsoft Visual Studio 9.0\VC\bin\link.exe"
1>  NumberParameters         = 00000002
1>  ExceptionInformation[ 0] = 00000000
1>  ExceptionInformation[ 1] = 0132D670
1>CONTEXT:
1>  Eax    = 400BC1F0  Esp    = 003FF104
1>  Ebx    = 4000816C  Ebp    = 003FF12C
1>  Ecx    = 0132D670  Esi    = 400BC078
1>  Edx    = 003FF11C  Edi    = 000BD6C0
1>  Eip    = 0012FCF7  EFlags = 00010246
1>  SegCs  = 0000001B  SegDs  = 00000023
1>  SegSs  = 00000023  SegEs  = 00000023
1>  SegFs  = 0000003B  SegGs  = 00000000
1>  Dr0    = 00000000  Dr3    = 00000000
1>  Dr1    = 00000000  Dr6    = 00000000
1>  Dr2    = 00000000  Dr7    = 00000000
1>Build log was saved at "file://d:\VC程序\TestLink\TestLink\Debug\BuildLog.htm"
1>TestLink - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
如图

解决方案 »

  1.   

    我以前在WIN7 上运行VS2008也出现此问题 貌似与兼容性有关
      

  2.   

    我以前在WIN7 上运行VS2008也出现此问题 貌似与兼容性有关
      

  3.   

    打开设置工程属性对话框,选择配置属性 -> 链接器 -> 常规,在右侧的启用增量链接中,修改为否(/INCREMENTAL:NO)
      

  4.   

    打上SP1补丁就可以了,我以前也试过这样。
    vc6,vs2005,vs2008,vs2010它们之间毫无干扰,我现在机子就装了vc6,vs2008和vs2010
      

  5.   

    打开设置工程属性对话框,选择配置属性 -> 链接器 -> 常规,在右侧的启用增量链接中,修改为否(/INCREMENTAL:NO)正解