public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler.
@ 2005-05-21 21:08 pluto at agmk dot net
  2005-05-21 21:15 ` [Bug bootstrap/21704] " pinskia at gcc dot gnu dot org
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: pluto at agmk dot net @ 2005-05-21 21:08 UTC (permalink / raw)
  To: gcc-bugs

sparc64-pld-linux-gcc == 32-bit sparc crosscompiler for sparc64 target.  
  
during building native 64-bit compiler I get:  
  
(...)  
sparc64-pld-linux-gcc -c   -O2 -mcpu=ultrasparc -DIN_GCC   -W -Wall  
-Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic  
-Wno-long-long -Wno-variadic-macros -Wold-style-definition    -DHAVE_CONFIG_H     
-I. -I. -I../../gcc -I../../gcc/. -I../../gcc/../include  
-I../../gcc/../libcpp/include  \  
        ../../gcc/config/host-linux.c  
../../gcc/config/host-linux.c: In function 'linux_gt_pch_use_address':  
../../gcc/config/host-linux.c:202: error: 'SSIZE_MAX' undeclared (first use in  
this function)  
../../gcc/config/host-linux.c:202: error: (Each undeclared identifier is  
reported only once  
  
../../gcc/config/host-linux.c:202: error: for each function it appears in.)  
make[1]: *** [host-linux.o] Error 1  
  
  
quick fix for gcc-4.0-20050514:  
  
--- gcc-4.0-snap/gcc/config/host-linux.c 2005-02-17 22:41:33.000000000 +0000  
+++ gcc-4.0-snap/gcc/config/host-linux.c 2005-05-21 20:49:06.000000000 +0000  
@@ -24,6 +24,7 @@  
 #include <sys/mman.h>  
 #include "hosthooks.h"  
 #include "hosthooks-def.h"  
+#include <bits/posix1_lim.h>

-- 
           Summary: failure during building 64-bit native compiler by
                    crosscompiler.
           Product: gcc
           Version: 4.0.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: bootstrap
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pluto at agmk dot net
                CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: sparc64


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
@ 2005-05-21 21:15 ` pinskia at gcc dot gnu dot org
  2005-05-21 21:50 ` pluto at agmk dot net
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-21 21:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-21 21:15 -------
Can you try to include limits.h instead?

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
  GCC build triplet|                            |sparc64-linux
   GCC host triplet|                            |sparc-linux
 GCC target triplet|sparc64                     |sparc64-linux
           Keywords|                            |build


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
  2005-05-21 21:15 ` [Bug bootstrap/21704] " pinskia at gcc dot gnu dot org
@ 2005-05-21 21:50 ` pluto at agmk dot net
  2005-06-05 20:20 ` christian dot joensson at gmail dot com
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: pluto at agmk dot net @ 2005-05-21 21:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pluto at agmk dot net  2005-05-21 21:50 -------
(In reply to comment #1) 
> Can you try to include limits.h instead? 
 
#include <limits.h> helps too. 
 

-- 


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
  2005-05-21 21:15 ` [Bug bootstrap/21704] " pinskia at gcc dot gnu dot org
  2005-05-21 21:50 ` pluto at agmk dot net
@ 2005-06-05 20:20 ` christian dot joensson at gmail dot com
  2005-07-09  9:33 ` pluto at agmk dot net
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: christian dot joensson at gmail dot com @ 2005-06-05 20:20 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |christian dot joensson at
                   |                            |gmail dot com


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
                   ` (2 preceding siblings ...)
  2005-06-05 20:20 ` christian dot joensson at gmail dot com
@ 2005-07-09  9:33 ` pluto at agmk dot net
  2005-07-09 23:15 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: pluto at agmk dot net @ 2005-07-09  9:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pluto at agmk dot net  2005-07-09 09:31 -------
ping. could someone commit this trivial fix?


-- 


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
                   ` (3 preceding siblings ...)
  2005-07-09  9:33 ` pluto at agmk dot net
@ 2005-07-09 23:15 ` pinskia at gcc dot gnu dot org
  2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-09 23:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-09 23:14 -------
I am testing the obvious patch which I recommended in comment #1.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pinskia at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-07-09 23:14:27
               date|                            |


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
                   ` (5 preceding siblings ...)
  2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
@ 2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
  2005-07-12 21:03 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-07-12 21:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-07-12 20:59 -------
Subject: Bug 21704

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	pinskia@gcc.gnu.org	2005-07-12 20:59:01

Modified files:
	gcc            : ChangeLog 
	gcc/config     : host-linux.c 

Log message:
	2005-07-12  Andrew Pinski  <pinskia@physics.uc.edu>
	
	PR bootstrap/21704
	* host-linux.h: Include limits.h.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.9420&r2=2.9421
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/host-linux.c.diff?cvsroot=gcc&r1=1.9&r2=1.10



-- 


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
                   ` (4 preceding siblings ...)
  2005-07-09 23:15 ` pinskia at gcc dot gnu dot org
@ 2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
  2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
  2005-07-12 21:03 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-07-12 21:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-07-12 21:01 -------
Subject: Bug 21704

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	pinskia@gcc.gnu.org	2005-07-12 21:01:17

Modified files:
	gcc            : ChangeLog 
	gcc/config     : host-linux.c 

Log message:
	2005-07-12  Andrew Pinski  <pinskia@physics.uc.edu>
	
	PR bootstrap/21704
	* host-linux.h: Include limits.h.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=2.7592.2.312&r2=2.7592.2.313
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/host-linux.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.8&r2=1.8.2.1



-- 


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
  2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
                   ` (6 preceding siblings ...)
  2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
@ 2005-07-12 21:03 ` pinskia at gcc dot gnu dot org
  7 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-12 21:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-12 21:01 -------
Fixed in 4.0.2 and above.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.2


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


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

* [Bug bootstrap/21704] failure during building 64-bit native compiler by crosscompiler.
       [not found] <bug-21704-4@http.gcc.gnu.org/bugzilla/>
@ 2014-02-16 13:18 ` jackie.rosen at hushmail dot com
  0 siblings, 0 replies; 10+ messages in thread
From: jackie.rosen at hushmail dot com @ 2014-02-16 13:18 UTC (permalink / raw)
  To: gcc-bugs

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

Jackie Rosen <jackie.rosen at hushmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackie.rosen at hushmail dot com

--- Comment #8 from Jackie Rosen <jackie.rosen at hushmail dot com> ---
*** Bug 260998 has been marked as a duplicate of this bug. ***
Seen from the domain http://volichat.com
Page where seen: http://volichat.com/adult-chat-rooms
Marked for reference. Resolved as fixed @bugzilla.


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

end of thread, other threads:[~2014-02-16 13:18 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-21 21:08 [Bug bootstrap/21704] New: failure during building 64-bit native compiler by crosscompiler pluto at agmk dot net
2005-05-21 21:15 ` [Bug bootstrap/21704] " pinskia at gcc dot gnu dot org
2005-05-21 21:50 ` pluto at agmk dot net
2005-06-05 20:20 ` christian dot joensson at gmail dot com
2005-07-09  9:33 ` pluto at agmk dot net
2005-07-09 23:15 ` pinskia at gcc dot gnu dot org
2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
2005-07-12 21:01 ` cvs-commit at gcc dot gnu dot org
2005-07-12 21:03 ` pinskia at gcc dot gnu dot org
     [not found] <bug-21704-4@http.gcc.gnu.org/bugzilla/>
2014-02-16 13:18 ` jackie.rosen at hushmail dot com

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).