Hello,
I wrote new cl+link from scratch in order to run a compiler + linker for another O.S (vxWorks).
When I compile a file, my cl is running and when I link the application,my link is running.
After running my cl, an obj file is created (ELF format)and after running my link, an exe file is created (ELF format).
The problem is that when I do not do any change in the source code, and run build all files are compiled again and the exe is linked again.
V.S runs my cl on all files and then run my link.
What am I doing wrong in my link ? Where should be the feature that tells V.S 2010 not to recompile a code that was not changed ?
I configured V.S 2010 to use the default cl+link on the same project. I did 'rebuild and then 'build'.
No files were compiled !!!
Is it possible that V.S 2010 looks for obj+exe files in Windows format ?
The obj+exe files I create in my cl+link are ELF.
Thanks,
Z.V