Solving the Visual Studio 2010 AlwaysCreate rebuild issue

39,096

Solution 1

I've had this problem many times and it was always frustrating. I'll tell you what the problem was in my case, but first I have to ask you:

  • Did you do a rebuild-all before you tried running the first time, or just a rebuild?
  • Once you do a rebuild all, does it ask you yet again to rebuild if you've made no changes?

The problem in my case was somewhat complex. I had custom build rules that copies binaries for Stingray from their source directory (where they lived) to a directory in my build tree. The binaries were marked as a dependancy, so that they were copied before each build in case they changed.

The dependancy checked looked at the timestamps of these files to see when they were changed. If the blah.lib had a mod date of last December in it's source directory, then when it was copied it would have the same mod date. The dependancy checked would note that "hey this file's pretty old, we have to rebuild it," and then it would ask if I wanted to do a full rebuild.

For a while I got by by just saying "No," but eventually I fixed the problem by changing the custom build rule to write a new text file after it did the file copy. That would make the new text file the dependancy, and not the blah.lib file, and it made the compiler happy.

Solution 2

  1. See in output window what file is rebuild

  2. Go to menu Tools->Options, then navigate to Project and Solutions->Build and Run. Change option MSBuild Project build output verbosity to:

    Diagnostic
    
  3. Build, got long log

  4. Find file (from 1) in log, read diagnostic. You may found for example header name which has date in future or absent.

Solution 3

I had the same problem on both converted and from-scratch projects. I got a hint from a MS page about missing files. I checked my project and found that it referenced a file that did not exist. Replaced it with the correct file, and the problem went away.

Solution 4

I know this is a very, very old post but for the benefit of all who still have this problem I decided to post my input. because "AlwaysCreate" was specified has nothing to do with project being rebuilt.

IT is the other way around. If you or Visual Studio decides to rebuild all, this causes creation of the "*.unsuccessfulbuild" file.

Some other issue (usually header that does not exist) will cause rebuild all leading to displaying because "AlwaysCreate" was specified.

"AlwaysCreate" is a part of Visual Studio build environment settings and is part of the Microsoft.CppBuild.targets XML file. It contains following line: Touch AlwaysCreate="true" Files="$(LastBuildUnsuccessful)"/

It this is set to true, ".unsuccessfulbuild" file will always be created regardless of the build being successful or not. If this is changed to false, ".unsuccessfulbuild is not created. If true the *.unsuccessfulbuild file is created as empty for the duration of the build process and then delete if build is successful. I am not sure why this file is created; even if the build has errors, the file is empty but not deleted as in case of the successful build.

Possibly the existence of this file has some meaning known only to VS build environment. If you want to play with this setting, deleting Touch key from

Solution 5

The MSDN docs imply that this property is specific to deployment projects.

findstr /si AlwaysCreate on your VS2010 project files should show you the culprit(s) if you can't track it down in the GUI.

Share:
39,096
SmacL
Author by

SmacL

Husband and father of two, into cycling, walking, music, martial arts and of course the odd beer. Oh yeah, and avid computer enthusiast for 40 years, 34 years professionally as a developer, 29 as the owner of a small software house.

Updated on February 20, 2022

Comments

  • SmacL
    SmacL about 2 years

    I've a C++ project that I'm currently porting from VS2008 to VS2010. When I build the project, Visual Studio 2010 reports the build as successful but if I then press F5 to start the debugger I'm told that the project is not up to date. If I ignore this warning, I can continue debugging ok, but if I press ok, the whole project (many hundreds of source files), gets rebuilt from scratch. The output contains the following;

    1>------ Build started: Project: SCCW-VC2010, Configuration: Debug Win32 ------
    1>Build started 15/11/2010 14:47:40.
    1>InitializeBuildStatus:
    1>  Creating "Debug\SCCW-VC2010.unsuccessfulbuild" because "AlwaysCreate" was specified.
    1>Midl:
    1>  All outputs are up-to-date.
    1>ClCompile:
    1>  tinedit.cpp
    1>  _WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
    1>  Automatically linking with sfl504d.lib
    1>  Automatically linking with ot1104d.lib
    1>c:\program files\rogue wave\stingray studio 10.4\include\toolkit\sectndlg.h(134): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
    1>          c:\program files\microsoft visual studio 10.0\vc\include\string.h(105) : see declaration of 'strcpy'
    1>  Automatically linking with og1204d.lib
    1>  Automatically linking with RWUXThemeD10.lib
    1>  profile.cpp
    1>  ZOffsetDialog.cpp
    

    Half an hour later, once the build is finished, the debugger starts. My guess is that the message

    Creating "Debug\SCCW-VC2010.unsuccessfulbuild" because "AlwaysCreate" was specified.

    is part of the problem, but I cant tie this to a project setting. I've found some help on google, but nothing that has worked thus far. Anyone else had this problem and know of a fix?

    Edit: As per Jalf's suggestion in the comments below, I have created a new projected, imported all my files into that project, and the new project has the same problems. Specifically, I copied over all the following groups;

    <ClCompile Include="..\MyDir\MyFile.cpp"/>
    <ClInclude Include="..\MyDir\MyFile.h" />
    <None Include="res\MyFile.ico" />  (and all similar resources)
    <Library Include="..\MyDir\MyFile.lib" />
    

    Edit2: After going through all the header includes I eventually found 3 that did not exist. Removing them and doing a rebuild all on the original project seems to have fixed the problem. Some of the blog posts that mention this problem refer to it as a bug, and two days of lost time later, I tend to agree. Thanks for the answers and comments provided.

    Edit3: And one day later the problem is back! Making any edit to any file in the project once again causes a full rebuild. As per John Dibling's answer, the project does include some static libraries, including Stingray. I'm ditching VS2010 and moving back to VS2008, as I have deadlines. For related information, see the following links;

    Visual Studio 2010 always thinks project is out of date, but nothing has changed

    http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/38c08137-3bb0-4143-b97f-72d077646318

    Link

    Final Edit The release of VS2010 SP1 has solved this problem, and builds are now fast and efficient.

  • SmacL
    SmacL over 13 years
    yup did a rebuild all and still get the problem which I suspect is very similar to yours. The following MSDN social link contains similar conclusions to your own. social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/…
  • vgoff
    vgoff over 11 years
    Seems to be more of a comment than an answer.
  • sorin
    sorin almost 11 years
    The url is expired and I suppse the correct command would be findstr /si AlwatsCreate *.vcxproj ... anyway this failed to find the source of the problem in my case.
  • Steve Townsend
    Steve Townsend almost 11 years
    Updated the URL for VS2010-specific form since it's gone from VS2012
  • sorin
    sorin almost 11 years
    This did not solve the same problem which I have with vs2012, see here my case stackoverflow.com/questions/17900716/…
  • GTAE86
    GTAE86 about 10 years
    FWIW, I had a really tough series of these problems when our build environment was upgraded to VS 2012 - lots of cases where it was not obvious what was going on. I followed the instructions here - blogs.msdn.com/b/andrewarnottms/archive/2012/06/07/… as well as at the link mentioned at the top of that article to use a second instance of Visual Studio to debug the build process in a first instance. Worked like a charm.
  • Wheezil
    Wheezil over 9 years
    I believe that this file is created because there are some possible failures in the build process that cannot be detected by source/target file timestamp alone. For example, there may be pre/post events that run but which produce no discernible target files. If they fail, and the build stops, or the build crashes mysteriously, the .unsuccessful build file will be there next time and the build system knows to try again.
  • GilesDMiddleton
    GilesDMiddleton almost 9 years
    This is the best advice, a generic solution to quickly find out the cause of the problem. Just set diagnostics on and build the first Project that you think is building unnecessarily, and BINGO - the first line of the diagnostics told me. I had two projects with files I had deleted and I had one project with the AlwaysCopy attribute set on a file.
  • adigostin
    adigostin over 7 years
    @GilesDMiddleton I'm using Visual Studio 2015 and the first line of the diagnostic file doesn't tell me anything useful. I actually cannot find in the diagnostic file what triggers the rebuild (it's many thousands of lines long and I can't read all of it). What strings should I search for? I tried the common-sense ones such as "rebuild" but got nothing useful.
  • navossoc
    navossoc about 2 years
    "You may found a header which has date in future" did you came from the future? Saved a lot of time!