VC6: How to disable incremental complilation
-
I'm trying to turn off incremental compilation in VisualC++ 6.0. At the moment I'm using the following options but the compiler seems to be ignoring me and keeps creating the "vc60.idb" file. cl.exe /nologo /c /W3 /Gi- /Zp1 /Od /GZ /FD Any idea? --- There are 10 types of people in the world, those who understand binary and those who don't.
-
I'm trying to turn off incremental compilation in VisualC++ 6.0. At the moment I'm using the following options but the compiler seems to be ignoring me and keeps creating the "vc60.idb" file. cl.exe /nologo /c /W3 /Gi- /Zp1 /Od /GZ /FD Any idea? --- There are 10 types of people in the world, those who understand binary and those who don't.
Go to [Project Settings], tab [C/C++], select the cpp file(s) you are interested in, select "Precompiled Headers" in the "Category" combobox and then click on the "Not using precompiled headers" radio button. SkyWalker
-
Go to [Project Settings], tab [C/C++], select the cpp file(s) you are interested in, select "Precompiled Headers" in the "Category" combobox and then click on the "Not using precompiled headers" radio button. SkyWalker
I don't think we're talking about the same here :) I'm not using precompiled headers at all, I want to turn off the incremental complilation feature. According to the documentation /Gi- should turn it off but "vc60.idb" is still created. And yes, I've checked all files and checked that the flag is set on all files (using gnumake, it's easy to check). --- There are 10 types of people in the world, those who understand binary and those who don't.
-
I don't think we're talking about the same here :) I'm not using precompiled headers at all, I want to turn off the incremental complilation feature. According to the documentation /Gi- should turn it off but "vc60.idb" is still created. And yes, I've checked all files and checked that the flag is set on all files (using gnumake, it's easy to check). --- There are 10 types of people in the world, those who understand binary and those who don't.
Then we are talking about this one: :-) Project Settings -> C/C++ Category: Customize The option "Enable incremental compilation" should be unchecked SkyWalker -- modified at 10:52 Monday 14th November, 2005
-
Then we are talking about this one: :-) Project Settings -> C/C++ Category: Customize The option "Enable incremental compilation" should be unchecked SkyWalker -- modified at 10:52 Monday 14th November, 2005
Yes, that's the /Gi- option but it's not working, the *.idb file is still created. --- There are 10 types of people in the world, those who understand binary and those who don't.
-
Yes, that's the /Gi- option but it's not working, the *.idb file is still created. --- There are 10 types of people in the world, those who understand binary and those who don't.