public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling
@ 2005-05-11 18:35 amylaar at gcc dot gnu dot org
  2005-05-11 18:37 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2005-05-11 18:35 UTC (permalink / raw)
  To: gcc-bugs

The original problem is described here:

http://gcc.gnu.org/ml/gcc/2005-05/msg00477.html

-- 
           Summary: ppc-eabisim is broken on mainline - problem with
                    argument handling
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: amylaar at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug target/21516] [4.1 Regression] ppc-eabisim is broken on mainline - problem with argument handling
  2005-05-11 18:35 [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling amylaar at gcc dot gnu dot org
@ 2005-05-11 18:37 ` pinskia at gcc dot gnu dot org
  2005-05-11 18:40 ` [Bug target/21516] " amylaar at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-11 18:37 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-11 18:37 -------
Patch posted here: <http://gcc.gnu.org/ml/gcc/2005-05/msg00530.html>.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |http://gcc.gnu.org/ml/gcc/20
                   |                            |05-05/msg00530.html
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
 GCC target triplet|                            |ppc-eabisim
           Keywords|                            |build, patch
   Last reconfirmed|0000-00-00 00:00:00         |2005-05-11 18:37:37
               date|                            |
            Summary|ppc-eabisim is broken on    |[4.1 Regression] ppc-eabisim
                   |mainline - problem with     |is broken on mainline -
                   |argument handling           |problem with argument
                   |                            |handling
   Target Milestone|---                         |4.1.0


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


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

* [Bug target/21516] ppc-eabisim is broken on mainline - problem with argument handling
  2005-05-11 18:35 [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling amylaar at gcc dot gnu dot org
  2005-05-11 18:37 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
@ 2005-05-11 18:40 ` amylaar at gcc dot gnu dot org
  2005-05-11 18:44 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: amylaar at gcc dot gnu dot org @ 2005-05-11 18:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From amylaar at gcc dot gnu dot org  2005-05-11 18:39 -------
[I would continue to handle this in email, but sending doesn't work right now.]

Aldy Hernandez wrote:

>  
>
>
>The problem is that target_flags_explicit was not being set on the
>options that set additional masks.  Silly me for not understanding
>how c-opt.c worked.
>
>The patch below fixes your problem.  I'm testing on ppc-linux right now,
>but a preliminary test shows your problem being resolved.  Could you
>please test on your configuration?
>
>David/Geoff, could you take a peek at this?
>
>Thanks.
>
>	* config/rs6000/rs6000.c (rs6000_handle_option): Set
>	target_flags_explicit when appropriate.
>
   
This gets me past the point of building eabi.o (actually, it builds two of
these).  But now I get a new failure:

make[3]: Entering directory `/mnt/scratch/nightly/2005-05-11/ppc/gcc'
/mnt/scratch/nightly/2005-05-11/ppc/./gcc/xgcc
-B/mnt/scratch/nightly/2005-05-11/ppc/./gcc/ -nostdinc
-B/mnt/scratch/nightly/2005-05-11/ppc/powerpc-eabisim/newlib/ -isystem
/mnt/scratch/nightly/2005-05-11/ppc/powerpc-eabisim/newlib/targ-include -isystem
/mnt/scratch/nightly/2005-05-11/srcw/newlib/libc/include
-B/usr/local/powerpc-eabisim/bin/ -B/usr/local/powerpc-eabisim/lib/ -isystem
/usr/local/powerpc-eabisim/include -isystem
/usr/local/powerpc-eabisim/sys-include
-L/mnt/scratch/nightly/2005-05-11/ppc/./ld -O2 -DIN_GCC -DCROSS_COMPILE   -W
-Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
-Wold-style-definition  -isystem ./include  -I. -Ile -I../../srcw/gcc
-I../../srcw/gcc/le -I../../srcw/gcc/../include
-I../../srcw/gcc/../libcpp/include  -mlittle -mrelocatable-lib -mno-eabi
-mstrict-align -g0 -finhibit-size-directive -fno-inline-functions
-fno-exceptions -fno-zero-initialized-in-bss -fno-unit-at-a-time -msdata=none \
   -c ../../srcw/gcc/crtstuff.c -DCRT_BEGIN \
  -o le/crtbegin.o
cc1: error: unrecognized command line option "-mlittle"
make[3]: *** [le/crtbegin.o] Error 1

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |aldyh at redhat dot com
                URL|http://gcc.gnu.org/ml/gcc/20|
                   |05-05/msg00530.html         |
 GCC target triplet|ppc-eabisim                 |
           Keywords|build, patch                |
            Summary|[4.1 Regression] ppc-eabisim|ppc-eabisim is broken on
                   |is broken on mainline -     |mainline - problem with
                   |problem with argument       |argument handling
                   |handling                    |
   Target Milestone|4.1.0                       |---


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


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

* [Bug target/21516] [4.1 Regression] ppc-eabisim is broken on mainline - problem with argument handling
  2005-05-11 18:35 [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling amylaar at gcc dot gnu dot org
  2005-05-11 18:37 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
  2005-05-11 18:40 ` [Bug target/21516] " amylaar at gcc dot gnu dot org
@ 2005-05-11 18:44 ` pinskia at gcc dot gnu dot org
  2005-05-11 18:46 ` pinskia at gcc dot gnu dot org
  2005-05-28 18:06 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-11 18:44 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |build
            Summary|ppc-eabisim is broken on    |[4.1 Regression] ppc-eabisim
                   |mainline - problem with     |is broken on mainline -
                   |argument handling           |problem with argument
                   |                            |handling
   Target Milestone|---                         |4.1.0


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


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

* [Bug target/21516] [4.1 Regression] ppc-eabisim is broken on mainline - problem with argument handling
  2005-05-11 18:35 [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling amylaar at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2005-05-11 18:44 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
@ 2005-05-11 18:46 ` pinskia at gcc dot gnu dot org
  2005-05-28 18:06 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-11 18:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-11 18:46 -------
There is a fixme in the .opt:
; FIXME: Need a way to specify an alias.
;mlittle
;Target Report RejectNegative Mask(LITTLE_ENDIAN)
;Produce little endian code



-- 


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


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

* [Bug target/21516] [4.1 Regression] ppc-eabisim is broken on mainline - problem with argument handling
  2005-05-11 18:35 [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling amylaar at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2005-05-11 18:46 ` pinskia at gcc dot gnu dot org
@ 2005-05-28 18:06 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-28 18:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-28 18:00 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2005-05-28 18:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-11 18:35 [Bug target/21516] New: ppc-eabisim is broken on mainline - problem with argument handling amylaar at gcc dot gnu dot org
2005-05-11 18:37 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
2005-05-11 18:40 ` [Bug target/21516] " amylaar at gcc dot gnu dot org
2005-05-11 18:44 ` [Bug target/21516] [4.1 Regression] " pinskia at gcc dot gnu dot org
2005-05-11 18:46 ` pinskia at gcc dot gnu dot org
2005-05-28 18:06 ` pinskia 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).