Add a missing switch to GCC-Java

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@13348 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Pierre Labastie 2014-07-06 08:18:27 +00:00
parent bc5778fd6d
commit 5bc15f3a3b
3 changed files with 17 additions and 2 deletions

View File

@ -1,12 +1,12 @@
<!-- $LastChangedBy$ $Date$ --> <!-- $LastChangedBy$ $Date$ -->
<!ENTITY day "05"> <!-- Always 2 digits --> <!ENTITY day "06"> <!-- Always 2 digits -->
<!ENTITY month "07"> <!-- Always 2 digits --> <!ENTITY month "07"> <!-- Always 2 digits -->
<!ENTITY year "2014"> <!ENTITY year "2014">
<!ENTITY copyrightdate "2001-&year;"> <!ENTITY copyrightdate "2001-&year;">
<!ENTITY copyholder "The BLFS Development Team"> <!ENTITY copyholder "The BLFS Development Team">
<!ENTITY version "&year;-&month;-&day;"> <!ENTITY version "&year;-&month;-&day;">
<!ENTITY releasedate "July 5th, &year;"> <!ENTITY releasedate "July 6th, &year;">
<!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
<!ENTITY blfs-version "svn"> <!-- svn|[release #] --> <!ENTITY blfs-version "svn"> <!-- svn|[release #] -->
<!ENTITY lfs-version "development"> <!-- x.y|development] --> <!ENTITY lfs-version "development"> <!-- x.y|development] -->

View File

@ -157,6 +157,7 @@ cd ../gcc-build &amp;&amp;
--disable-multilib \ --disable-multilib \
--with-system-zlib \ --with-system-zlib \
--disable-bootstrap \ --disable-bootstrap \
--enable-java-home \
--with-jvm-root-dir=/opt/gcj \ --with-jvm-root-dir=/opt/gcj \
--with-antlr-jar=$(pwd)/../antlr-&antlr-version;-complete.jar \ --with-antlr-jar=$(pwd)/../antlr-&antlr-version;-complete.jar \
--enable-languages=java &amp;&amp; --enable-languages=java &amp;&amp;
@ -230,6 +231,11 @@ ln -sfv ../../../usr/bin/ecj /opt/gcj/bin/javac</userinput></screen>
ones you install. ones you install.
</para> </para>
<para>
<parameter>--enable-java-home</parameter>: Allows to creates a directory
layout similar to that of a JVM.
</para>
<para> <para>
<parameter>--with-jvm-root-dir=/opt/gcj</parameter>: Allows to install <parameter>--with-jvm-root-dir=/opt/gcj</parameter>: Allows to install
the JVM in the specified location. the JVM in the specified location.

View File

@ -44,6 +44,15 @@
--> -->
<listitem>
<para>July 6th, 2014</para>
<itemizedlist>
<listitem>
<para>[pierre] - Add a missing switch for GCC-Java.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem> <listitem>
<para>July 5th, 2014</para> <para>July 5th, 2014</para>
<itemizedlist> <itemizedlist>