Re: Compiling awt with -Od

2010-07-15 Thread Pete Brunet
make OPTIMIZATION_LEVEL=NONE worked well. Now I can see all my variables :-) And since make only builds the changed files nothing else gets impacted. Thanks for the help, Pete Erik Trimble wrote: > On 7/15/2010 10:25 AM, Kelly O'Hair wrote: >> Look at OPTIMIZATION_LEVEL, maybe >> >>make OPT

Re: Compiling awt with -Od

2010-07-15 Thread Erik Trimble
On 7/15/2010 10:25 AM, Kelly O'Hair wrote: Look at OPTIMIZATION_LEVEL, maybe make OPTIMIZATION_LEVEL=NONE, or make FASTDEBUG_OPTIMIZATION_LEVEL=NONE ??? -kto On Jul 15, 2010, at 9:53 AM, Pete Brunet wrote: I am building just jdk7/jdk/make/sun/awt and I need to compile at least two file

Re: Compiling awt with -Od

2010-07-15 Thread Kelly O'Hair
Look at OPTIMIZATION_LEVEL, maybe make OPTIMIZATION_LEVEL=NONE, or make FASTDEBUG_OPTIMIZATION_LEVEL=NONE ??? -kto On Jul 15, 2010, at 9:53 AM, Pete Brunet wrote: I am building just jdk7/jdk/make/sun/awt and I need to compile at least two files with -Od. It would be OK to compile them

Compiling awt with -Od

2010-07-15 Thread Pete Brunet
I am building just jdk7/jdk/make/sun/awt and I need to compile at least two files with -Od. It would be OK to compile them all with -Od if need be. Is there an environment variable I can set to make that happen? Or do I need to hack a make file? If the latter, what change is needed? Thanks, P