public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/28149]  New: Fail to test GCC on simulation due to libjava build errors.
@ 2006-06-24  7:52 jserv at kaffe dot org
  2006-06-24  8:27 ` [Bug java/28149] " jserv at kaffe dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: jserv at kaffe dot org @ 2006-06-24  7:52 UTC (permalink / raw)
  To: gcc-bugs

While testing GCC on a simulator[1], there are some build errors causing the
process failed. The files are involving in:
(1) libjava/java/util/natVMTimeZone.cc
(2) libjava/classpath/native/fdlibm/mprec.c

Attachment attempts to fix the issue and drive testing GCC on simulation
continue.

[1] Reference: http://gcc.gnu.org/simtest-howto.html


-- 
           Summary: Fail to test GCC on simulation due to libjava build
                    errors.
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jserv at kaffe dot org
 GCC build triplet: i486-linux-gnu
  GCC host triplet: i486-linux-gnu
GCC target triplet: arm-elf


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28149


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/28149] Fail to test GCC on simulation due to libjava build errors.
  2006-06-24  7:52 [Bug java/28149] New: Fail to test GCC on simulation due to libjava build errors jserv at kaffe dot org
@ 2006-06-24  8:27 ` jserv at kaffe dot org
  2006-06-27 15:33 ` tromey at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: jserv at kaffe dot org @ 2006-06-24  8:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from jserv at kaffe dot org  2006-06-24 07:52 -------
Created an attachment (id=11739)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=11739&action=view)
Fix build errors in libjava when target = arm-elf simulation


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28149


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/28149] Fail to test GCC on simulation due to libjava build errors.
  2006-06-24  7:52 [Bug java/28149] New: Fail to test GCC on simulation due to libjava build errors jserv at kaffe dot org
  2006-06-24  8:27 ` [Bug java/28149] " jserv at kaffe dot org
@ 2006-06-27 15:33 ` tromey at gcc dot gnu dot org
  2006-06-29  7:30 ` jserv at kaffe dot org
  2007-02-14 15:37 ` manu at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-06-27 15:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from tromey at gcc dot gnu dot org  2006-06-27 15:30 -------
The mprec part of this patch looks fine to me.
This should go in Classpath as well as libgcj.

The timezone part of this patch looks odd.
I would expect that we would need another case in there
for "__timezone" -- both a configure check and another
#if.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-06-27 15:30:56
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28149


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/28149] Fail to test GCC on simulation due to libjava build errors.
  2006-06-24  7:52 [Bug java/28149] New: Fail to test GCC on simulation due to libjava build errors jserv at kaffe dot org
  2006-06-24  8:27 ` [Bug java/28149] " jserv at kaffe dot org
  2006-06-27 15:33 ` tromey at gcc dot gnu dot org
@ 2006-06-29  7:30 ` jserv at kaffe dot org
  2007-02-14 15:37 ` manu at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: jserv at kaffe dot org @ 2006-06-29  7:30 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jserv at kaffe dot org  2006-06-29 06:43 -------
(In reply to comment #2)
> The timezone part of this patch looks odd.
> I would expect that we would need another case in there
> for "__timezone" -- both a configure check and another
> #if.

I compared automake detecting report between gcc/gcj and GNU Classpath, and I
found that macro definition HAVE_UNDERSCORE_TIMEZONE was set to different
values. For the former, that is 1, and becomes unset for the later. GNU
Classpath bootstrapped with Automake 1.9.6 works for me, and configure script
outputs the right results.

Still, I don't find other clues.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28149


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/28149] Fail to test GCC on simulation due to libjava build errors.
  2006-06-24  7:52 [Bug java/28149] New: Fail to test GCC on simulation due to libjava build errors jserv at kaffe dot org
                   ` (2 preceding siblings ...)
  2006-06-29  7:30 ` jserv at kaffe dot org
@ 2007-02-14 15:37 ` manu at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: manu at gcc dot gnu dot org @ 2007-02-14 15:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from manu at gcc dot gnu dot org  2007-02-14 15:37 -------
(In reply to comment #3)
> (In reply to comment #2)
> > The timezone part of this patch looks odd.
> > I would expect that we would need another case in there
> > for "__timezone" -- both a configure check and another
> > #if.
> 
> I compared automake detecting report between gcc/gcj and GNU Classpath, and I
> found that macro definition HAVE_UNDERSCORE_TIMEZONE was set to different
> values. For the former, that is 1, and becomes unset for the later. GNU
> Classpath bootstrapped with Automake 1.9.6 works for me, and configure script
> outputs the right results.
> 

Maybe you should ask about that in the gcc@gcc.gnu.org and java@gcc.gnu.org
mailing lists, so your question will reach a wider audience.

I had to disable java to bootstrapped+test using a simulator. :(



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28149


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-02-14 15:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-24  7:52 [Bug java/28149] New: Fail to test GCC on simulation due to libjava build errors jserv at kaffe dot org
2006-06-24  8:27 ` [Bug java/28149] " jserv at kaffe dot org
2006-06-27 15:33 ` tromey at gcc dot gnu dot org
2006-06-29  7:30 ` jserv at kaffe dot org
2007-02-14 15:37 ` manu at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).