BUILD COMPLETE: build.610
Date of build: 05/18/2007 10:50:49
Time to build: 33 minutes 21 seconds
Last changed: 05/18/2007 10:31:37
Last log entry: classlib
***********************************************************
Errors/Warnings: (68)
Using CLASSLIB = C:\cruise_short\trunk\cc\projects\classlib\trunk
jars: true
using proxy settings: proxy.ims.intel.com port:911
Using CLASSLIB = C:\cruise_short\trunk\cc\projects\classlib\trunk
jars: true
using proxy settings: proxy.ims.intel.com port:911
Configuration:
Hosting Java = 1.5.0_06 (Sun Microsystems Inc.)
classlib root = C:\cruise_short\trunk\cc\projects\classlib\trunk
os = Windows
arch = ia32
cxx = msvc
cfg = debug
svn revision = 539244
components = deploy
extra
extra.apr
extra.apriconv
extra.aprutil
extra.eclipse_script
extra.hyplugin
extra.java_script
extra.jre_libraries
extra.log4cxx
extra.zlib
vm
vm.em
vm.encoder
vm.gc_cc
vm.gc_gen
vm.hythr
vm.interpreter
vm.jitrino
vm.jthread
vm.kernel_classes
vm.port
vm.vmcore
vm.vmi
## Building native of 'extra.apr'
## Building native of 'extra.apriconv'
apriconv:
C:\cruise_short\trunk\cc\projects\drlvm\trunk\build\pre-copied\win\APRICONV\apr-iconv-1.1.1\include
## Building native of 'extra.aprutil'
## Building native of 'extra.log4cxx'
## Building native of 'extra.zlib'
## Building native of 'vm.encoder'
## Building native of 'vm.port'
## Building Java classes of 'vm.kernel_classes'
## Packing 'vm.kernel_classes' classes into jar
## Building native of 'vm.kernel_classes'
## Building Java classes of 'vm.hythr'
## Packing 'vm.hythr' classes into jar
## Building native of 'vm.hythr'
## Building native of 'vm.jthread'
Copying files for internationalization...
## Building native of 'vm.vmcore'
## Building Java classes of 'vm.gc_gen'
## Packing 'vm.gc_gen' classes into jar
## Building native of 'vm.gc_gen'
## Building Java classes of 'vm.gc_cc'
## Packing 'vm.gc_cc' classes into jar
## Building native of 'vm.gc_cc'
Copying the configuration jitrino files...
## Building native of 'vm.jitrino'
## Building native of 'vm.em'
## Building native of 'vm.vmi'
Copying the configuration interpreter files...
## Building native of 'vm.interpreter'
***********************************************************
Unit Tests: (0)
No Tests Run: This project doesn't have any tests
***********************************************************
Modifications since last successful build: (8)
add cc-classlib log20070518103137Lbuild.355 05/18/2007 10:31:37classlib
modified smishura
/harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/String_Pool.cpp
05/18/2007 10:26:45 Quick fix for commit r538982 (DRLVM build fails on Windows
x86):Fixed bug HARMONY-3758 [drlvm][classloader] assert fires in
String_Pool::lookup()
add cc-classlib log20070518010720Lbuild.354 05/18/2007 01:07:20classlib
modified ayza
/harmony/enhanced/classlib/trunk/modules/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/SecurityManagerTest.java
05/18/2007 00:57:45 Applying patch for test from HARMONY-2451
([classlib][luni] SecurityManager.getClassContext output differs from the RI)
modified ayza
/harmony/enhanced/drlvm/trunk/vm/vmcore/src/kernel_classes/native/org_apache_harmony_vm_VMStack.cpp
05/18/2007 00:56:23 Applying patch for HARMONY-2451 ([classlib][luni]
SecurityManager.getClassContext output differs from the RI)
modified ayza
/harmony/enhanced/drlvm/trunk/vm/vmcore/src/kernel_classes/javasrc/org/apache/harmony/vm/VMStack.java
05/18/2007 00:56:23 Applying patch for HARMONY-2451 ([classlib][luni]
SecurityManager.getClassContext output differs from the RI)
add cc-classlib log20070517230114Lbuild.353 05/17/2007 23:01:14classlib
modified gshimansky
/harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/String_Pool.cpp
05/17/2007 22:55:47 Fixed bug HARMONY-3758 [drlvm][classloader] assert fires in
String_Pool::lookup()For some reason in unaligned case when string is read byte
by byte the signed char byteswere converted to POINTER_SIZE_INT with sign
extend. When string contains unicodecharacters ( >= 128) this leads to
incorrect results because upper bytes of thebyte are filled with 0xff bytes.
The fix is to consider bytes as unsigned beforeextending them to
POINTER_SIZE_INT.