1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[175157] force building javadoc with Java5-64bit on build.eclipse.org

This commit is contained in:
Martin Oberhuber 2007-02-22 20:28:07 +00:00
parent dc3f9f190d
commit 6e68a08f3d
3 changed files with 6 additions and 2 deletions

View file

@ -94,6 +94,7 @@
<available file="${java.home}/../bin/javadoc.exe" property="javadoc" value="${java.home}/../bin/javadoc.exe" />
<available file="${java.home}/../bin/javadoc" property="javadoc" value="${java.home}/../bin/javadoc" />
<available file="/usr/bin/javadoc" property="javadoc" value="/usr/bin/javadoc" />
<available file="/shared/common/ibm-java2-ppc64-50/bin/javadoc" property="javadoc" value="/shared/common/ibm-java2-ppc64-50/bin/javadoc" />
</target>
<target name="generateJavadoc" depends="getJavadocPath,extractLinks,computeClasspath" if="javadoc">
@ -118,9 +119,10 @@
<echo message="sep = ${argsListDelimiter}"/>
<echo message="javadoc = ${javadoc}"/>
<exec dir="." executable="${javadoc}" output="temp.bin.log">
<exec dir="." executable="${javadoc}" output="temp.bin.log" resultproperty="javadocResult">
<arg line="@${basedir}/${optionsFile} -J-Xmx1000M" />
</exec>
<echo message="javadoc result = ${javadocResult}"/>
</target>
</project>

View file

@ -1,4 +1,5 @@
-charset "iso-8859-1"
-source 1.4
-sourcepath "../org.eclipse.dstore.core/src
;../org.eclipse.dstore.extra/src"
-d reference/api

View file

@ -132,9 +132,10 @@
<echo message="sep = ${argsListDelimiter}"/>
<echo message="javadoc = ${javadoc}"/>
<exec dir="." executable="${javadoc}" output="temp.bin.log">
<exec dir="." executable="${javadoc}" output="temp.bin.log" resultproperty="javadocResult">
<arg line="@${basedir}/${optionsFile} -J-Xmx1000M" />
</exec>
<echo message="javadoc result = ${javadocResult}"/>
</target>
</project>