News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

Rebuilding instead of compiling

Started by InddZen, November 05, 2008, 06:29:31 PM

Previous topic - Next topic

InddZen

Hi all,

I've noticed that in one of the computers I work on, everytime I compile my projects (whether they were modified or no) it's compiling all the files! I checked out and I found out that it's rebuilding them. And it's obviously very annoying since it's taking a lot of time.

I tried to check the compiler options but I'm not sure what to change.

So if anyone have an idea to solve this problem...

Thks in advance

stahta01

Did you verify the Date & Time is right on the PC?

Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

InddZen

Yes I checked. And there's no problem about that. :(

ollydbg

I have meet the problem when I use visual c++ which I modify the system time to an early time.
So, I suspect that this problem is due to the same reason in code::blocks.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.