BUILD FAILED:
Ant Error Message:
C:\cruise_short\trunk\cc\projects\drlvm\trunk\build\make\build.xml:462: The
following error occurred while executing this line:
C:\cruise_short\trunk\cc\projects\drlvm\trunk\build\make\build.xml:469: The
following error occurred while executing this line:
C:\cruise_short\trunk\cc\projects\drlvm\trunk\build\make\build_component.xml:72:
The following error occurred while executing this line:
C:\cruise_short\trunk\cc\projects\drlvm\trunk\build\win_ia32_msvc_debug\semis\build\targets\build.native.xml:81:
cl failed with return code 2
Date of build: 05/17/2007 23:15:28
Time to build: 8 minutes 36 seconds
Last changed: 05/17/2007 23:01:14
Last log entry: classlib
***********************************************************
Errors/Warnings: (55)
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 = 538986
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'
***********************************************************
Unit Tests: (0)
No Tests Run: This project doesn't have any tests
***********************************************************
Modifications since last successful build: (2)
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.