public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "howarth at bromo dot med.uc.edu" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug bootstrap/63622] [5.0 Regression] Bootstrap fails on x86_64-apple-darwin1[34] after revision r216305
Date: Thu, 06 Nov 2014 03:54:00 -0000	[thread overview]
Message-ID: <bug-63622-4-g6h47e3xn5@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-63622-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63622

--- Comment #17 from howarth at bromo dot med.uc.edu ---
These warnings are emitted from this code in gcc/config/darwin.h

/* Mach-O supports 'weak imports', and 'weak definitions' in coalesced
   sections.  machopic_select_section ensures that weak variables go in
   coalesced sections.  Weak aliases (or any other kind of aliases) are
   not supported.  Weak symbols that aren't visible outside the .s file
   are not supported.  */
#define ASM_WEAKEN_DECL(FILE, DECL, NAME, ALIAS)                        \
  do {                                                                  \
    if (ALIAS)                                                          \
      {                                                                 \
        warning (0, "alias definitions not supported in Mach-O; ignored");     
\
        break;                                                          \
      }                                                                 \
                                                                        \
    if (! DECL_EXTERNAL (DECL) && TREE_PUBLIC (DECL))                   \
      targetm.asm_out.globalize_label (FILE, NAME);                     \
    if (DECL_EXTERNAL (DECL))                                           \
      fputs ("\t.weak_reference ", FILE);                               \
    else if (lookup_attribute ("weak_import", DECL_ATTRIBUTES (DECL)))  \
      break;                                                            \
    else if (TREE_PUBLIC (DECL))                                        \
      fputs ("\t.weak_definition ", FILE);                              \
    else                                                                \
      break;                                                            \
    assemble_name (FILE, NAME);                                         \
    fputc ('\n', FILE);                                                 \
  } while (0)


  parent reply	other threads:[~2014-11-06  3:54 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-22 20:23 [Bug bootstrap/63622] New: " dominiq at lps dot ens.fr
2014-10-23 11:24 ` [Bug bootstrap/63622] " rguenth at gcc dot gnu.org
2014-10-23 16:21 ` dominiq at lps dot ens.fr
2014-10-29 15:11 ` marxin at gcc dot gnu.org
2014-10-29 22:13 ` dominiq at lps dot ens.fr
2014-10-30  1:03 ` howarth at bromo dot med.uc.edu
2014-10-30 10:07 ` marxin at gcc dot gnu.org
2014-10-30 15:41 ` dominiq at lps dot ens.fr
2014-11-05 22:16 ` howarth at bromo dot med.uc.edu
2014-11-05 22:46 ` howarth at bromo dot med.uc.edu
2014-11-05 23:12 ` howarth at bromo dot med.uc.edu
2014-11-06  1:19 ` howarth at bromo dot med.uc.edu
2014-11-06  1:32 ` howarth at bromo dot med.uc.edu
2014-11-06  3:10 ` redi at gcc dot gnu.org
2014-11-06  3:47 ` howarth at bromo dot med.uc.edu
2014-11-06  3:54 ` howarth at bromo dot med.uc.edu [this message]
2014-11-06  4:09 ` howarth at bromo dot med.uc.edu
2014-11-06  4:28 ` howarth at bromo dot med.uc.edu
2014-11-06  8:36 ` izamyatin at gmail dot com
2014-11-06 10:29 ` marxin at gcc dot gnu.org
2014-11-06 15:38 ` howarth at bromo dot med.uc.edu
2014-11-10 21:08 ` iains at gcc dot gnu.org
2014-11-11 17:02 ` howarth at bromo dot med.uc.edu
2014-11-11 17:11 ` howarth at bromo dot med.uc.edu
2014-11-11 17:14 ` howarth at bromo dot med.uc.edu
2014-11-11 17:17 ` howarth at bromo dot med.uc.edu
2014-11-11 17:57 ` howarth at bromo dot med.uc.edu
2014-11-11 17:58 ` howarth at bromo dot med.uc.edu
2014-11-11 18:07 ` dominiq at lps dot ens.fr
2014-11-11 19:12 ` fxcoudert at gcc dot gnu.org
2014-11-13 16:13 ` dominiq at lps dot ens.fr

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-63622-4-g6h47e3xn5@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).