From: Alan Modra Date: Wed, 19 Nov 2014 22:22:46 +0000 (+1030) Subject: Default powerpc64 to --plt-thread-safe for Go X-Git-Tag: gdb-7.9.0-release~580 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9dffbf0863b9010a5eece87bd6b36e38c09ffb0;p=external%2Fbinutils.git Default powerpc64 to --plt-thread-safe for Go Go is multi-threaded, so use thread-safe plt stubs. __go_go doesn't actually start threads, but is a convenient libgo function with a reasonably unique name that is called by all Go executables. (Threads are started by a static function of libgo, runtime_newosproc, called by a whole lot of global functions, including runtime_starttheworld and runtime_main.) bfd/ * elf64-ppc.c (ppc64_elf_size_stubs): Add __go_go to thread_starters. gold/ * powerpc.cc (Target_powerpc::do_relax): Add __go_go to thread_starters. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 579cca2..2657306 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2014-11-20 Alan Modra + + * elf64-ppc.c (ppc64_elf_size_stubs): Add __go_go to thread_starters. + 2014-11-18 H.J. Lu PR ld/17618 diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index 0b65ab1..901a88d 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -11979,6 +11979,8 @@ ppc64_elf_size_stubs (struct bfd_link_info *info) "GOMP_parallel_loop_runtime_start", "GOMP_parallel_sections", "GOMP_parallel_sections_start", + /* libgo */ + "__go_go", }; unsigned i; diff --git a/gold/ChangeLog b/gold/ChangeLog index ec76ab9..20ace5b 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,7 @@ +2014-11-20 Alan Modra + + * powerpc.cc (Target_powerpc::do_relax): Add __go_go to thread_starters. + 2014-11-13 H.J. Lu * x86_64.cc (Target_x86_64::Scan::global): Don't make PLT diff --git a/gold/powerpc.cc b/gold/powerpc.cc index 828bc16..500be1f 100644 --- a/gold/powerpc.cc +++ b/gold/powerpc.cc @@ -2720,6 +2720,8 @@ Target_powerpc::do_relax(int pass, "GOMP_parallel_loop_runtime_start", "GOMP_parallel_sections", "GOMP_parallel_sections_start", + /* libgo */ + "__go_go", }; if (parameters->options().shared())