diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/darwin.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5516191..ca77fc4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-02-17 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + PR target/34587 + * config/darwin.h (SUPPORTS_INIT_PRIORITY): Define. + 2009-02-18 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/36922 diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index 53dab64..5d4b187 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -998,4 +998,8 @@ extern void darwin_default_min_version (int * argc, char *** argv); darwin_default_min_version (&argc, &argv) #endif /* CROSS_DIRECTORY_STRUCTURE */ +/* The Apple assembler and linker do not support constructor priorities. */ +#undef SUPPORTS_INIT_PRIORITY +#define SUPPORTS_INIT_PRIORITY 0 + #endif /* CONFIG_DARWIN_H */ |
