You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2005/10/19 10:21:31 UTC

svn commit: r326462 - in /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM: jvm/.cdtbuild libjvm/.cdtbuild

Author: dlydick
Date: Wed Oct 19 01:21:18 2005
New Revision: 326462

URL: http://svn.apache.org/viewcvs?rev=326462&view=rev
Log:
Added '-lm' option to linkage to get various floating point function
calls.

Remove '-fpack-struct' compile option and restore default settings
to selected files that explicitly removed it.

Changed representative '-I' and '-L' paths to conform more
to SVN directory structure.

Changed all tabs to use project settings to isolate from workspace
defaults.

Do not permit -fpack-struct on any of the portability library
source files.

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/.cdtbuild
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/.cdtbuild

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/.cdtbuild
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/.cdtbuild?rev=326462&r1=326461&r2=326462&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/.cdtbuild (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/.cdtbuild Wed Oct 19 01:21:18 2005
@@ -8,10 +8,10 @@
 <builder superClass="cdt.managedbuild.target.gnu.builder.exe.debug" id="cdt.managedbuild.target.gnu.builder.exe.debug.1048311613" name="Gnu Make.bin"/>
 <tool superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967" name="GCC C Compiler">
 <option superClass="gnu.c.compiler.option.include.paths" id="gnu.c.compiler.option.include.paths.1144545727" valueType="includePath">
-<listOptionValue value="/home/dlydick/harmony/bootJVM/jvm/include" builtIn="false"/>
-<listOptionValue value="/home/dlydick/harmony/bootJVM/config" builtIn="false"/>
+<listOptionValue value="/home/dlydick/harmony/bootjvm/bootJVM/jvm/include" builtIn="false"/>
+<listOptionValue value="/home/dlydick/harmony/bootjvm/bootJVM/config" builtIn="false"/>
 </option>
-<option superClass="gnu.c.compiler.option.misc.other" id="gnu.c.compiler.option.misc.other.797961741" value="-c -fmessage-length=0 -m32 -fpack-struct" valueType="string"/>
+<option superClass="gnu.c.compiler.option.misc.other" id="gnu.c.compiler.option.misc.other.797961741" value="-c -fmessage-length=0 -m32" valueType="string"/>
 <option superClass="gnu.c.compiler.option.misc.ansi" id="gnu.c.compiler.option.misc.ansi.1817263150" value="true" valueType="boolean"/>
 </tool>
 <tool superClass="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug" id="cdt.managedbuild.tool.gnu.cpp.compiler.exe.debug.546772165" name="GCC C++ Compiler"/>
@@ -19,6 +19,7 @@
 <option superClass="gnu.c.link.option.ldflags" id="gnu.c.link.option.ldflags.309413827" value="-m32" valueType="string"/>
 <option superClass="gnu.c.link.option.libs" id="gnu.c.link.option.libs.510816722" valueType="libs">
 <listOptionValue value="pthread" builtIn="false"/>
+<listOptionValue value="m" builtIn="false"/>
 </option>
 <option superClass="gnu.c.link.option.paths" id="gnu.c.link.option.paths.455445367"/>
 <option superClass="gnu.c.link.option.noshared" id="gnu.c.link.option.noshared.957277546" value="false" valueType="boolean"/>
@@ -27,8 +28,11 @@
 <tool superClass="cdt.managedbuild.tool.gnu.assembler.exe.debug" id="cdt.managedbuild.tool.gnu.assembler.exe.debug.2022609315" name="GCC Assembler"/>
 </toolChain>
 <resourceConfiguration id="cdt.managedbuild.config.gnu.exe.debug.1499222932./jvm/src/stdio.c" name="stdio.c" exclude="false" resourcePath="/jvm/src/stdio.c">
-<tool superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967./jvm/src/stdio.c" name="GCC C Compiler">
-<option superClass="gnu.c.compiler.option.misc.other" id="gnu.c.compiler.option.misc.other.1987781725" value="-c -fmessage-length=0 -m32" valueType="string"/>
+<tool superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967./jvm/src/stdio.c" name="GCC C Compiler"/>
+</resourceConfiguration>
+<resourceConfiguration id="cdt.managedbuild.config.gnu.exe.debug.1499222932./jvm/src/portable_setjmp.c" name="portable_setjmp.c" exclude="false" resourcePath="/jvm/src/portable_setjmp.c">
+<tool superClass="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967" id="cdt.managedbuild.tool.gnu.c.compiler.exe.debug.1885617967./jvm/src/portable_setjmp.c" name="GCC C Compiler">
+<option superClass="gnu.c.compiler.option.misc.other" id="gnu.c.compiler.option.misc.other.1449477602" value="-c -fmessage-length=0 -m32 " valueType="string"/>
 </tool>
 </resourceConfiguration>
 </configuration>

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/.cdtbuild
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/.cdtbuild?rev=326462&r1=326461&r2=326462&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/.cdtbuild (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/.cdtbuild Wed Oct 19 01:21:18 2005
@@ -8,10 +8,10 @@
 <builder superClass="cdt.managedbuild.target.gnu.builder.lib.debug" id="cdt.managedbuild.target.gnu.builder.lib.debug.103413262" name="Gnu Make.lib"/>
 <tool superClass="cdt.managedbuild.tool.gnu.c.compiler.lib.debug" id="cdt.managedbuild.tool.gnu.c.compiler.lib.debug.649102944" name="GCC C Compiler">
 <option superClass="gnu.c.compiler.option.include.paths" id="gnu.c.compiler.option.include.paths.1956164695" name="Include paths (-I)" valueType="includePath">
-<listOptionValue value="/home/dlydick/harmony/bootJVM/config" builtIn="false"/>
-<listOptionValue value="/home/dlydick/harmony/bootJVM/jvm/include" builtIn="false"/>
+<listOptionValue value="/home/dlydick/harmony/bootjvm/bootJVM/config" builtIn="false"/>
+<listOptionValue value="/home/dlydick/harmony/bootjvm/bootJVM/jvm/include" builtIn="false"/>
 </option>
-<option superClass="gnu.c.compiler.option.misc.other" id="gnu.c.compiler.option.misc.other.706680930" name="Other flags" value="-c -fmessage-length=0 -fpack-struct -m32" valueType="string"/>
+<option superClass="gnu.c.compiler.option.misc.other" id="gnu.c.compiler.option.misc.other.706680930" name="Other flags" value="-c -fmessage-length=0 -m32" valueType="string"/>
 <option superClass="gnu.c.compiler.option.misc.ansi" id="gnu.c.compiler.option.misc.ansi.1123496589" name="Support ANSI programs (-ansi)" value="true" valueType="boolean"/>
 </tool>
 <tool superClass="cdt.managedbuild.tool.gnu.cpp.compiler.lib.debug" id="cdt.managedbuild.tool.gnu.cpp.compiler.lib.debug.2058711594" name="GCC C++ Compiler"/>