Building JDK9 with all debugging information
Yasumasa Suenaga
yasuenag at gmail.com
Fri Nov 13 13:08:13 UTC 2015
> make \
> DEBUG_BINARIES=true \
> JAVAC_FLAGS=-g \
> STRIP_POLICY=no_strip \
> STRIP="" \
> ALT_OBJCOPY=none \
> all
I've posted a patch to make debuginfo more easy:
JDK-8036003: Add --with-debug-symbols=[none|internal|external|zipped]
https://bugs.openjdk.java.net/browse/JDK-8036003
http://mail.openjdk.java.net/pipermail/build-dev/2014-February/012019.html
I think that debuginfo is very useful for developers.
So I want to move forward this enhancement.
Thanks,
Yasumasa
On 2015/11/06 2:50, omajid at redhat.com (Omair Majid) wrote:
> Hi,
>
> I had trouble building a recent version of OpenJDK 9 in a configuration
> that left all debugging information in the shared objects. So here's a
> quick guide on how to do that:
>
> bash ./configure \
> --disable-zip-debug-info \
> --with-debug-level=release \
> --disable-warnings-as-errors
>
> You might also like the following options to use more system libraries:
>
> --with-stdc++lib=dynamic \
> --with-zlib=system \
> --with-libjpeg=system \
> --with-giflib=system \
> --with-libpng=system \
> --with-lcms=system \
>
> And this to enable stronger cyrpto:
>
> --enable-unlimited-crypto \
>
> And then build it using:
>
> make \
> DEBUG_BINARIES=true \
> JAVAC_FLAGS=-g \
> STRIP_POLICY=no_strip \
> STRIP="" \
> ALT_OBJCOPY=none \
> all
>
> DEBUG_BINARIES forces "-g" when building native code and JAVAC_FLAGS does the
> same for Java code. STRIP_POLICY, STRIP, and ALT_OBJCOPY together prevent the
> build from stripping debug information from shared objects.
>
> Cheers,
> Omair
>
More information about the distro-pkg-dev
mailing list