public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS
@ 2004-07-23  3:04 gcc-bugzilla at gcc dot gnu dot org
  2004-07-23  3:10 ` [Bug target/16683] " pinskia at gcc dot gnu dot org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: gcc-bugzilla at gcc dot gnu dot org @ 2004-07-23  3:04 UTC (permalink / raw)
  To: gcc-bugs


	ia64.h does not honor SUBTARGET_EXTRA_SPECS like most of other
	architectures do. FreeBSD depends on this feature to specify a
	path to dynamic loader to be used depending on FreeBSD major
	version.

Environment:
System: FreeBSD k8.dnsalias.net 5.2-CURRENT FreeBSD 5.2-CURRENT #0: Mon Jul 12 00:28:33 EDT 2004 kan@k8.dnsalias.net:/usr/src/sys/amd64/compile/KAN amd64


	<machine, os, target, libraries (multiple lines)>
host: x86_64-portbld-freebsd5.2
build: x86_64-portbld-freebsd5.2
target: x86_64-portbld-freebsd5.2
configured with: ./..//gcc-3.4-20040709/configure --disable-nls --with-system-zlib --with-libiconv-prefix=/usr/local --program-suffix=34 --with-gxx-include-dir=/usr/local/lib/gcc/x86_64-portbld-freebsd5.2/3.4.2/include/c++/ --disable-shared --disable-libgcj --prefix=/usr/local x86_64-portbld-freebsd5.2

How-To-Repeat:
	Bootstrap 3.4.x on FreeBSD/ia64 and see it fail.
------- Additional Comments From kan at FreeBSD dot ORG  2004-07-23 03:04 -------
Fix:
	The patch below brings ia64.h in line with other architectures in
	respect to SUBTARGET_EXTRA_SPECS usage.


Index: config/ia64/ia64.h
===================================================================
RCS file: /usr/download/ncvs/src/contrib/gcc/config/ia64/ia64.h,v
retrieving revision 1.1.1.5
diff -u -r1.1.1.5 ia64.h
--- config/ia64/ia64.h	20 Mar 2004 04:06:08 -0000	1.1.1.5
+++ config/ia64/ia64.h	13 Jul 2004 16:33:01 -0000
@@ -43,8 +43,13 @@
 	  builtin_define("__BIG_ENDIAN__");	\
 } while (0)
 
+#ifndef SUBTARGET_EXTRA_SPECS
+#define SUBTARGET_EXTRA_SPECS
+#endif
+
 #define EXTRA_SPECS \
-  { "asm_extra", ASM_EXTRA_SPEC },
+  { "asm_extra", ASM_EXTRA_SPEC }, \
+  SUBTARGET_EXTRA_SPECS
 
 #define CC1_SPEC "%(cc1_cpu) "

-- 
           Summary: ia64 does not honor SUBTARGET_EXTRA_SPECS
           Product: gcc
           Version: 3.4.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: kan at FreeBSD dot ORG
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: x86_64-portbld-freebsd5.2
  GCC host triplet: x86_64-portbld-freebsd5.2
GCC target triplet: x86_64-portbld-freebsd5.2


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


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

* [Bug target/16683] ia64 does not honor SUBTARGET_EXTRA_SPECS
  2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
@ 2004-07-23  3:10 ` pinskia at gcc dot gnu dot org
  2004-07-27  0:02 ` wilson at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-23  3:10 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-07-23 03:10 -------
As usually patches goto gcc-patches@gcc.gnu.org.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-07-23 03:10:05
               date|                            |


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


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

* [Bug target/16683] ia64 does not honor SUBTARGET_EXTRA_SPECS
  2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
  2004-07-23  3:10 ` [Bug target/16683] " pinskia at gcc dot gnu dot org
@ 2004-07-27  0:02 ` wilson at gcc dot gnu dot org
  2004-07-27  0:04 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: wilson at gcc dot gnu dot org @ 2004-07-27  0:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at gcc dot gnu dot org  2004-07-27 00:02 -------
Fixed.  Zack approved and checked in the patch after it was posted to gcc-patches.

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


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


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

* [Bug target/16683] ia64 does not honor SUBTARGET_EXTRA_SPECS
  2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
  2004-07-23  3:10 ` [Bug target/16683] " pinskia at gcc dot gnu dot org
  2004-07-27  0:02 ` wilson at gcc dot gnu dot org
@ 2004-07-27  0:04 ` pinskia at gcc dot gnu dot org
  2004-07-27  1:32 ` wilson at specifixinc dot com
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-27  0:04 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |3.5.0


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


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

* [Bug target/16683] ia64 does not honor SUBTARGET_EXTRA_SPECS
  2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2004-07-27  0:04 ` pinskia at gcc dot gnu dot org
@ 2004-07-27  1:32 ` wilson at specifixinc dot com
  2004-07-27  2:18 ` zack at gcc dot gnu dot org
  2004-07-27  2:19 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: wilson at specifixinc dot com @ 2004-07-27  1:32 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at specifixinc dot com  2004-07-27 01:31 -------
Subject: Re:  ia64 does not honor SUBTARGET_EXTRA_SPECS

pinskia at gcc dot gnu dot org wrote:
 > Target Milestone|---                         |3.5.0

Er wait, this should have been fixed in gcc-3.4.x.  I am following up 
with Zack.  If he doesn't add the patch to gcc-3.4.x, then I will.


-- 


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


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

* [Bug target/16683] ia64 does not honor SUBTARGET_EXTRA_SPECS
  2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2004-07-27  1:32 ` wilson at specifixinc dot com
@ 2004-07-27  2:18 ` zack at gcc dot gnu dot org
  2004-07-27  2:19 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: zack at gcc dot gnu dot org @ 2004-07-27  2:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From zack at gcc dot gnu dot org  2004-07-27 02:15 -------
I've applied it to 3.4 now.

-- 


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


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

* [Bug target/16683] ia64 does not honor SUBTARGET_EXTRA_SPECS
  2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2004-07-27  2:18 ` zack at gcc dot gnu dot org
@ 2004-07-27  2:19 ` pinskia at gcc dot gnu dot org
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-27  2:19 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.5.0                       |3.4.2


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


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

end of thread, other threads:[~2004-07-27  2:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-07-23  3:04 [Bug target/16683] New: ia64 does not honor SUBTARGET_EXTRA_SPECS gcc-bugzilla at gcc dot gnu dot org
2004-07-23  3:10 ` [Bug target/16683] " pinskia at gcc dot gnu dot org
2004-07-27  0:02 ` wilson at gcc dot gnu dot org
2004-07-27  0:04 ` pinskia at gcc dot gnu dot org
2004-07-27  1:32 ` wilson at specifixinc dot com
2004-07-27  2:18 ` zack at gcc dot gnu dot org
2004-07-27  2:19 ` 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).