This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

When I build a project, all files always rebuild

Hello,
I works with µVision v 5.0.5.15,
and when I build my ARM project, all files are always rebuild !
I found on the net, that the problem can be the TZ system variable.
But in my PC (Windows 7) there is no this variable.
I found on the net, that "Create Bath File" on Target/Output menu, should not be selected.
It's true for me.

would you have an idea for my problem ?

thank you for your help.
Best regards

Parents
  • With a tool like CVS, you can have incremental storage of your source changes while using a file .cvsignore to inform which directories and files to ignore - so it will ignore any object files or even full output directories even if inside the source tree.

    Another thing is that it isn't uncommon to have multiple copies of the source code, to allow different tests to be performed before deciding if the code should be accepted or not. Each source tree retrieved as a branch from the source code repository. Then it isn't so fun to have the object files above the source tree.

Reply
  • With a tool like CVS, you can have incremental storage of your source changes while using a file .cvsignore to inform which directories and files to ignore - so it will ignore any object files or even full output directories even if inside the source tree.

    Another thing is that it isn't uncommon to have multiple copies of the source code, to allow different tests to be performed before deciding if the code should be accepted or not. Each source tree retrieved as a branch from the source code repository. Then it isn't so fun to have the object files above the source tree.

Children