I haven't experienced the noted Vista compile issues except for a weird quirk with debugging which was easily solved by the how-to-debug FAQ.
The compiler switch setting in the IDE doesn't seem to do anything for me, but the "-g3 -O0" command line setting worked perfectly.
Not sure if this is unique to Vista but I didn't experience this problem under Win2000 or WinXP.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2007-08-20
>> The compiler switch setting in the IDE doesn't seem to do anything for me
This is usually caused because you are using a project but changing the Compiler options, you need to change it in the Project options. The compiler options are inherited by a project on creation, but remain fixed thereafter.
Setting option in the "Add the following commands when calling the compiler" are applied to new and existing projects and should be reserved for settings that you really want to apply to all projects - generally warning settings.
Clifford
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I haven't experienced the noted Vista compile issues except for a weird quirk with debugging which was easily solved by the how-to-debug FAQ.
The compiler switch setting in the IDE doesn't seem to do anything for me, but the "-g3 -O0" command line setting worked perfectly.
Not sure if this is unique to Vista but I didn't experience this problem under Win2000 or WinXP.
>> The compiler switch setting in the IDE doesn't seem to do anything for me
This is usually caused because you are using a project but changing the Compiler options, you need to change it in the Project options. The compiler options are inherited by a project on creation, but remain fixed thereafter.
Setting option in the "Add the following commands when calling the compiler" are applied to new and existing projects and should be reserved for settings that you really want to apply to all projects - generally warning settings.
Clifford
"The compiler switch setting in the IDE doesn't seem to do anything for me"
That is a long time bug, not really related to Vista. It is why I wrote the getting started with the debugger section the way I did.
Wayne