lichengwu
lichengwu

Reputation: 4307

How many debug options can I set while building OpenJDK on Linux?

I want to build a debug version openJDK on my own PC, does anybody can tell me all the debug options while building the openJDK.

So far, i know:

DEBUG_NAME=all_fastdebug
BUILD_JAXWS=false
BUILD_JAXP=false

Anything else? Many thanks.

Upvotes: 2

Views: 467

Answers (1)

Aviram Segal
Aviram Segal

Reputation: 11120

You can take a look at the Makefile for openjdk7 and see all of the options.

Only DEBUG_NAME is related to debug, the rest are just for selecting which components to build

This is what I found in the makefile:

DEBUG_NAME=fastdebug
BUILD_HOTSPOT=false
BUILD_JDK=false
BUILD_LANGTOOLS=false
BUILD_CORBA=false
BUILD_JAXP=false
BUILD_JAXWS=false
UILD_INSTALL=false
BUILD_SPONSORS=false

Upvotes: 1

Related Questions