why I cannot build a product version openjdk?

View: New views
3 Messages — Rating Filter:   Alert me  

why I cannot build a product version openjdk?

by Colin(Du Li) :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I tried to build a product version jdk by setting environmental variable
"SKIP_DEBUG_BUILD=true, SKIP_FASTDEBUG_BUILD=true".
But I check the output jdk version, the information as follows:
"openjdk version "1.7.0-internal-debug"
OpenJDK Runtime Environment (build 1.7.0-internal-debug-dli_01_jul_2009_02_59-b00)
OpenJDK Server VM (build 12.0-b01-jvmg, mixed mode)"
It seems a debug version? right? why not product version?

I use the following build command:
cd ../openjkd/jdk7/
make  CC_INTERP=1  all

Could anyone give me a hand?

Thanks a lot!

Re: why I cannot build a product version openjdk?

by kelly.ohair :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



Colin(Du Li) wrote:

> I tried to build a product version jdk by setting environmental variable
> "SKIP_DEBUG_BUILD=true, SKIP_FASTDEBUG_BUILD=true".
> But I check the output jdk version, the information as follows:
> "openjdk version "1.7.0-internal-debug"
> OpenJDK Runtime Environment (build
> 1.7.0-internal-debug-dli_01_jul_2009_02_59-b00)
> OpenJDK Server VM (build 12.0-b01-jvmg, mixed mode)"
> It seems a debug version? right? why not product version?
>
> I use the following build command:
> cd ../openjkd/jdk7/
> make  CC_INTERP=1  all
>
> Could anyone give me a hand?

Just not enough information here.

Tell us what 'cd ../openjkd/jdk7 && ls' says, so we know what you are building.

Tell us what 'uname -a' says so we know what you are building on.

Tell us exactly where you got your sources from too.

-kto

>
> Thanks a lot!
>

Re: why I cannot build a product version openjdk?

by tim.bell :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Colin(Du Li) wrote:

> I tried to build a product version jdk by setting environmental variable
> "SKIP_DEBUG_BUILD=true, SKIP_FASTDEBUG_BUILD=true".
> But I check the output jdk version, the information as follows:
> "openjdk version "1.7.0-internal-debug"
> OpenJDK Runtime Environment (build
> 1.7.0-internal-debug-dli_01_jul_2009_02_59-b00)
> OpenJDK Server VM (build 12.0-b01-jvmg, mixed mode)"
> It seems a debug version? right? why not product version?
>
> I use the following build command:
> cd ../openjkd/jdk7/
> make  CC_INTERP=1  all

Try using the 'openjdk_build' make target instead of 'all'

Take a look at the top level Makefile around lines 314 ... 347

Hope this helps-

Tim