CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Aug 2002
    Posts
    756

    How do I deal with this error?

    Hi, ALL,

    Code:
        
    1>------ Build started: Project: dbinterface, Configuration: Debug Win32 ------
    1>Build started 5/29/2016 3:51:25 PM.
    1>InitializeBuildStatus:
    1>  Touching "Debug\dbinterface.unsuccessfulbuild".
    1>ClCompile:
    1>  All outputs are up-to-date.
    1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(1151,5): warning MSB8012: TargetPath(C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbhandler\Debug\dbinterface.lib) does not match the Library's OutputFile property value (C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbinterface\vc_mswud\dbinterface.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
    1>Lib:
    1>  Microsoft (R) Library Manager Version 10.00.40219.01
    1>  Copyright (C) Microsoft Corporation.  All rights reserved.
    1>  
    1>  "/OUT:C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbinterface\vc_mswud\dbinterface.lib" /NOLOGO vc_mswud 
    1>LINK : fatal error LNK1104: cannot open file 'vc_mswud'
    1>
    1>Build FAILED.
    1>
    1>Time Elapsed 00:00:00.93
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    and this is what I have in the "Project Properties -> Linker -> Command Line":

    Code:
    /OUT:"C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbinterface\vc_mswud\dbinterface.lib" /NOLOGO
    I don't understand this. Where the extra "vc_mswud" is coming from? Should I just delete some file to be regenerated? If yes - which one?

    But more importantly - isn't the link command comes from the project?

    I'm just trying to put all build files in one directory.

    Thank you.

    P.S.: I'm using MSVC 2010 Pro under Win 8.1.
    Last edited by OneEyeMan; May 29th, 2016 at 06:06 PM.

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: How do I deal with this error?

    I'd recommend you first to fix the warning MSB8012...
    Victor Nijegorodov

  3. #3
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,824

    Re: How do I deal with this error?

    C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbinterface\vc_mswud\dbinterface.lib

    Does the folder vc_mswud exist?
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  4. #4
    Join Date
    Aug 2002
    Posts
    756

    Re: How do I deal with this error?

    Hi, guys,
    2 2kaud:
    Yes, it does. The problem is the extra vc_mswud after /NOLOGO in my build log which is not present in the project properties.

    Thank you.

  5. #5
    Join Date
    Aug 2002
    Posts
    756

    Re: How do I deal with this error?

    Hi, guys,
    I rolled back to the previous copy of the dbinterface.vcxproj and the project built successful.

    So, now, I would like to have everything in one directory: all object files and lib file. And this directory should be dbinterface/vc_mswud. This was my ultimate goal when I started playing with this project.

    Here is the successful build log:

    Code:
    1>------ Build started: Project: dbinterface, Configuration: Debug Win32 ------
    1>Build started 5/30/2016 4:41:49 PM.
    1>PrepareForBuild:
    1>  Creating directory "C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbhandler\Debug\".
    1>InitializeBuildStatus:
    1>  Creating "Debug\dbinterface.unsuccessfulbuild" because "AlwaysCreate" was specified.
    1>ClCompile:
    1>  stdafx.cpp
    1>Lib:
    1>  dbinterface.vcxproj -> C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbhandler\Debug\dbinterface.lib
    1>FinalizeBuildStatus:
    1>  Deleting file "Debug\dbinterface.unsuccessfulbuild".
    1>  Touching "Debug\dbinterface.lastbuildstate".
    1>
    1>Build succeeded.
    1>
    1>Time Elapsed 00:00:01.69
    ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
    And this is what I have in the Project Properties:

    For the C/C++ Command Line:
    Code:
    /ZI /nologo /W4 /WX- /Od /Oy- /D "WIN32" /D "_DEBUG" /D "_LIB" /D "_UNICODE" /D "UNICODE" /Gm /EHsc /RTC1 /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fp"Debug\dbinterface.pch" /Fa"Debug\" /Fo"Debug\" /Fd"Debug\vc100.pdb" /Gd /analyze- /errorReport:queue
    For the Librarian Command Line:
    Code:
    /OUT:"C:\Users\Igor\OneDrive\Documents\dbhandler_app\dbhandler\Debug\dbinterface.lib" /NOLOGO
    Thank you.

  6. #6
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: How do I deal with this error?

    So Victor's advice was spot on?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured