build failure for java-1.6.0-openjdk-1.6.0.0-44.1.9.1.fc14 on s390 (32-bit)

Dr Andrew John Hughes ahughes at redhat.com
Wed Nov 3 11:27:19 PDT 2010


On 11:15 Wed 03 Nov     , Dan Horák wrote:
> Hi,
> 
> I'm working on the s390(x) port of Fedora and I got a build failure for
> the latest java-1.6.0-openjdk package on the s390 (32-bit) architecture,
> see http://s390.koji.fedoraproject.org/koji/taskinfo?taskID=220141 for
> details. Proposed fix is attached.
> 
> 
> 	With regards,
> 
> 		Dan
> 

I've committed this to HEAD.  Does this look ok for 1.9?

> --- icedtea6-1.9.1/openjdk/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp.s390	2010-10-28 05:45:16.000000000 -0400
> +++ icedtea6-1.9.1/openjdk/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp	2010-10-28 05:46:22.000000000 -0400
> @@ -37,7 +37,7 @@ void objArrayKlass::objarray_follow_cont
>    const size_t beg_index = size_t(index);
>    assert(beg_index < len || len == 0, "index too large");
>  
> -  const size_t stride = MIN2(len - beg_index, ObjArrayMarkingStride);
> +  const size_t stride = MIN2(len - beg_index, (size_t)ObjArrayMarkingStride);
>    const size_t end_index = beg_index + stride;
>    T* const base = (T*)a->base();
>    T* const beg = base + beg_index;
> @@ -71,7 +71,7 @@ void objArrayKlass::objarray_follow_cont
>    const size_t beg_index = size_t(index);
>    assert(beg_index < len || len == 0, "index too large");
>  
> -  const size_t stride = MIN2(len - beg_index, ObjArrayMarkingStride);
> +  const size_t stride = MIN2(len - beg_index, (size_t)ObjArrayMarkingStride);
>    const size_t end_index = beg_index + stride;
>    T* const base = (T*)a->base();
>    T* const beg = base + beg_index;


-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint = F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8



More information about the distro-pkg-dev mailing list