- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
The defaults under a Debug configuration work pretty well, though I'd also suggest turning on "Variables default to AUTOMATIC" as a debugging aid. You can also turn on overflow checking, and under Floating Point, set the Floating Point Exception behavior to 0 instead of the default 3. There is no option for memory leak checking.
Steve
Steve
コピーされたリンク
2 返答(返信)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Steve,
What is the advantage of "variables default to AUTOMATIC" as a debug option. I have done a lot of probing around in the help files for exasctly what this accomplishes, but have never been able to really understand what is going on. Thanks,
Tom
What is the advantage of "variables default to AUTOMATIC" as a debug option. I have done a lot of probing around in the help files for exasctly what this accomplishes, but have never been able to really understand what is going on. Thanks,
Tom
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
This option removes the assumed static semantics for local variables that the compiler uses by default for compatibility with "dusty deck" code that assumes all variables are statically allocated. The side effect of the option is that such variables are not considered initially defined, and hence the compiler is better able to give warnings for uninitialized variables.
Steve
Steve