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 11:32:09 UTC

svn commit: r326502 - in /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM: jvm/build.sh libjvm/build.sh

Author: dlydick
Date: Wed Oct 19 02:31:57 2005
New Revision: 326502

URL: http://svn.apache.org/viewcvs?rev=326502&view=rev
Log:
Make sure portability source files are shown in exception list.

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

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/build.sh
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/build.sh?rev=326502&r1=326501&r2=326502&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/build.sh (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/build.sh Wed Oct 19 02:31:57 2005
@@ -24,12 +24,15 @@
 # comment may be found in @link ./config.sh config.sh@endlink
 #
 #
-# @todo  A Windows .BAT version of this script needs to be written
+# @todo  HARMONY-6-jvm-build.sh-1 A Windows .BAT version of this
+#        script needs to be written
 #
 #
 # @section Control
 #
-# \$URL$ \$Id$
+# \$URL$
+#
+# \$Id$
 #
 # Copyright 2005 The Apache Software Foundation
 # or its licensors, as applicable.
@@ -53,9 +56,8 @@
 # @date \$LastChangedDate$
 #
 # @author \$LastChangedBy$
-#         Original code contributed by Daniel Lydick on 09/28/2005.
 #
-# @todo  A Windows .BAT version of this script needs to be written
+#         Original code contributed by Daniel Lydick on 09/28/2005.
 #
 # @section Reference
 #
@@ -105,6 +107,9 @@
     OBJECTS="$OBJECTS ${OBJECT}"
 
     case $f in
+        src/portable_libc.c | \
+        src/portable_libm.c | \
+        src/portable_setjmp.c | \
         src/stdio.c)
             gcc $ALWAYS_OPTIONS \
                 -o ${OBJECT} \

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/build.sh
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/build.sh?rev=326502&r1=326501&r2=326502&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/build.sh (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/libjvm/build.sh Wed Oct 19 02:31:57 2005
@@ -29,12 +29,15 @@
 #
 #
 #
-# @todo  A Windows .BAT version of this script needs to be written
+# @todo  HARMONY-6-libjvm-build.sh-1 A Windows .BAT version of this
+#        script needs to be written
 #
 #
 # @section Control
 #
-# \$URL$ \$Id$
+# \$URL$
+#
+# \$Id$
 #
 # Copyright 2005 The Apache Software Foundation
 # or its licensors, as applicable.
@@ -58,6 +61,7 @@
 # @date \$LastChangedDate$
 #
 # @author \$LastChangedBy$
+#
 #         Original code contributed by Daniel Lydick on 09/28/2005.
 #
 # @section Reference
@@ -115,6 +119,9 @@
     fi
 
     case $f in
+        src/portable_libc.c | \
+        src/portable_libm.c | \
+        src/portable_setjmp.c | \
         src/stdio.c)
             gcc $ALWAYS_OPTIONS \
                 -o ${OBJECT} \