public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820
@ 2011-10-12  8:54 dominiq at lps dot ens.fr
  2011-10-12  8:59 ` [Bug bootstrap/50699] " iains at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2011-10-12  8:54 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 50699
           Summary: [4.7 Regression] Bootstrap fails on *-apple-darwin*
                    due to revision 179820
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: dominiq@lps.ens.fr
                CC: gnu@the-meissners.org, iains@gcc.gnu.org
              Host: *-apple-darwin*
            Target: *-apple-darwin*
             Build: *-apple-darwin*


Bootstrap fails on *-apple-darwin* due to revision 179820 (see
http://gcc.gnu.org/ml/gcc-regression/2011-10/txt00000.txt ):

/Users/regress/tbox/native/build/./prev-gcc/g++
-B/Users/regress/tbox/native/build/./prev-gcc/
-B/Users/regress/tbox/objs/powerpc-apple-darwin9.8.0/bin/ -nostdinc++
-B/Users/regress/tbox/native/build/prev-powerpc-apple-darwin9.8.0/libstdc++-v3/src/.libs
-B/Users/regress/tbox/native/build/prev-powerpc-apple-darwin9.8.0/libstdc++-v3/libsupc++/.libs
-I/Users/regress/tbox/native/build/prev-powerpc-apple-darwin9.8.0/libstdc++-v3/include/powerpc-apple-darwin9.8.0
-I/Users/regress/tbox/native/build/prev-powerpc-apple-darwin9.8.0/libstdc++-v3/include
-I/Users/regress/tbox/svn-gcc/libstdc++-v3/libsupc++
-L/Users/regress/tbox/native/build/prev-powerpc-apple-darwin9.8.0/libstdc++-v3/src/.libs
-L/Users/regress/tbox/native/build/prev-powerpc-apple-darwin9.8.0/libstdc++-v3/libsupc++/.libs
-c   -g -O2 -mdynamic-no-pic -gtoggle -DIN_GCC   -W -Wall -Wwrite-strings
-Wcast-qual -Wmissing-format-attribute -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -Werror -fno-common  
 -DHAVE_CONFIG_H -I. -I. -I/Users/regress/tbox/svn-gcc/gcc
-I/Users/regress/tbox/svn-gcc/gcc/.
-I/Users/regress/tbox/svn-gcc/gcc/../include -I./../intl
-I/Users/regress/tbox/svn-gcc/gcc/../libcpp/include 
-I/Users/regress/tbox/svn-gcc/gcc/../libdecnumber
-I/Users/regress/tbox/svn-gcc/gcc/../libdecnumber/dpd -I../libdecnumber    -I.
-I. -I/Users/regress/tbox/svn-gcc/gcc -I/Users/regress/tbox/svn-gcc/gcc/.
-I/Users/regress/tbox/svn-gcc/gcc/../include -I./../intl
-I/Users/regress/tbox/svn-gcc/gcc/../libcpp/include 
-I/Users/regress/tbox/svn-gcc/gcc/../libdecnumber
-I/Users/regress/tbox/svn-gcc/gcc/../libdecnumber/dpd -I../libdecnumber   \
        /Users/regress/tbox/svn-gcc/gcc/config/darwin.c
/Users/regress/tbox/svn-gcc/gcc/config/darwin.c: In function 'void
darwin_patch_builtin(int)':
/Users/regress/tbox/svn-gcc/gcc/config/darwin.c:2965:42: error: invalid
conversion from 'int' to 'built_in_function' [-fpermissive]
/Users/regress/tbox/svn-gcc/gcc/config/darwin.c:2977:37: error: invalid
conversion from 'int' to 'built_in_function' [-fpermissive]


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

* [Bug bootstrap/50699] [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820
  2011-10-12  8:54 [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820 dominiq at lps dot ens.fr
@ 2011-10-12  8:59 ` iains at gcc dot gnu.org
  2011-10-12 11:25 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: iains at gcc dot gnu.org @ 2011-10-12  8:59 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Sandoe <iains at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011-10-12
     Ever Confirmed|0                           |1

--- Comment #1 from Iain Sandoe <iains at gcc dot gnu.org> 2011-10-12 08:58:57 UTC ---
Looks like a minor oversight in r179820.

I am testing the following on *-darwin9.

Index: gcc/config/darwin.c
===================================================================
--- gcc/config/darwin.c (revision 179837)
+++ gcc/config/darwin.c (working copy)
@@ -2957,10 +2957,11 @@ darwin_override_options (void)
   darwin_running_cxx = (strstr (lang_hooks.name, "C++") != 0);
 }

-/* Add $LDBL128 suffix to long double builtins.  */
+#if defined (__ppc__) || defined (__ppc64__)
+/* Add $LDBL128 suffix to long double builtins for ppc darwin.  */

 static void
-darwin_patch_builtin (int fncode)
+darwin_patch_builtin (enum built_in_function fncode)
 {
   tree fn = builtin_decl_explicit (fncode);
   tree sym;
@@ -2998,6 +2999,7 @@ darwin_patch_builtins (void)
 #undef PATCH_BUILTIN_NO64
 #undef PATCH_BUILTIN_VARIADIC
 }
+#endif

 /*  CFStrings implementation.  */
 static GTY(()) tree cfstring_class_reference = NULL_TREE;


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

* [Bug bootstrap/50699] [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820
  2011-10-12  8:54 [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820 dominiq at lps dot ens.fr
  2011-10-12  8:59 ` [Bug bootstrap/50699] " iains at gcc dot gnu.org
@ 2011-10-12 11:25 ` rguenth at gcc dot gnu.org
  2011-10-12 17:22 ` iains at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-10-12 11:25 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.7.0


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

* [Bug bootstrap/50699] [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820
  2011-10-12  8:54 [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820 dominiq at lps dot ens.fr
  2011-10-12  8:59 ` [Bug bootstrap/50699] " iains at gcc dot gnu.org
  2011-10-12 11:25 ` rguenth at gcc dot gnu.org
@ 2011-10-12 17:22 ` iains at gcc dot gnu.org
  2011-10-14  8:14 ` iains at gcc dot gnu.org
  2011-10-14  8:18 ` iains at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: iains at gcc dot gnu.org @ 2011-10-12 17:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Iain Sandoe <iains at gcc dot gnu.org> 2011-10-12 17:21:37 UTC ---
(In reply to comment #1)
> Looks like a minor oversight in r179820.
> 
> I am testing the following on *-darwin9.

allows bootstrap to complete on *-darwin9 and x86_64-dariwn10.
reg-testing under way.


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

* [Bug bootstrap/50699] [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820
  2011-10-12  8:54 [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820 dominiq at lps dot ens.fr
                   ` (2 preceding siblings ...)
  2011-10-12 17:22 ` iains at gcc dot gnu.org
@ 2011-10-14  8:14 ` iains at gcc dot gnu.org
  2011-10-14  8:18 ` iains at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: iains at gcc dot gnu.org @ 2011-10-14  8:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Iain Sandoe <iains at gcc dot gnu.org> 2011-10-14 08:13:12 UTC ---
Author: iains
Date: Fri Oct 14 08:13:04 2011
New Revision: 179962

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=179962
Log:

gcc:

    PR bootstrap/50699
    * config/darwin.c (darwin_patch_builtin): Adjust argument type. Only
    build for powerpc targets.  (darwin_patch_builtins): Only build for 
    powerpc targets.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/darwin.c


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

* [Bug bootstrap/50699] [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820
  2011-10-12  8:54 [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820 dominiq at lps dot ens.fr
                   ` (3 preceding siblings ...)
  2011-10-14  8:14 ` iains at gcc dot gnu.org
@ 2011-10-14  8:18 ` iains at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: iains at gcc dot gnu.org @ 2011-10-14  8:18 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Sandoe <iains at gcc dot gnu.org> changed:

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

--- Comment #4 from Iain Sandoe <iains at gcc dot gnu.org> 2011-10-14 08:18:21 UTC ---
fixed.


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

end of thread, other threads:[~2011-10-14  8:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-10-12  8:54 [Bug bootstrap/50699] New: [4.7 Regression] Bootstrap fails on *-apple-darwin* due to revision 179820 dominiq at lps dot ens.fr
2011-10-12  8:59 ` [Bug bootstrap/50699] " iains at gcc dot gnu.org
2011-10-12 11:25 ` rguenth at gcc dot gnu.org
2011-10-12 17:22 ` iains at gcc dot gnu.org
2011-10-14  8:14 ` iains at gcc dot gnu.org
2011-10-14  8:18 ` iains at gcc dot gnu.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).