diff options
author | Devang Patel <dpatel@apple.com> | 2003-09-09 17:43:38 -0700 |
---|---|---|
committer | Devang Patel <dpatel@gcc.gnu.org> | 2003-09-09 17:43:38 -0700 |
commit | e62f462e1093bc9ce729021bcef66e9636159568 (patch) | |
tree | e681df249288ed5a3e03f3c77866770e1212d568 /gcc/config | |
parent | 6fe055ae4630dd4352ac7cdc5298b277d6493235 (diff) | |
download | gcc-e62f462e1093bc9ce729021bcef66e9636159568.zip gcc-e62f462e1093bc9ce729021bcef66e9636159568.tar.gz gcc-e62f462e1093bc9ce729021bcef66e9636159568.tar.bz2 |
darwin.h (LINK_SPEC): Pass -nofixprebinding to linker.
gcc
* config/darwin.h (LINK_SPEC): Pass -nofixprebinding to linker.
* doc/invoke.texi: Document new Darwin linker option -nofixprebinding.
testsuite
* gcc.dg/darwin-ld-6.c: New test.
From-SVN: r71259
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/darwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/darwin.h b/gcc/config/darwin.h index e0aeb7b..528140d 100644 --- a/gcc/config/darwin.h +++ b/gcc/config/darwin.h @@ -246,7 +246,7 @@ Boston, MA 02111-1307, USA. */ %{Zmulti_module:-multi_module} %{Zsingle_module:-single_module} \ %{Zmultiply_defined*:-multiply_defined %*} \ %{Zmultiplydefinedunused*:-multiply_defined_unused %*} \ - %{prebind} %{noprebind} %{prebind_all_twolevel_modules} \ + %{prebind} %{noprebind} %{nofixprebinding} %{prebind_all_twolevel_modules} \ %{read_only_relocs} \ %{sectcreate*} %{sectorder*} %{seg1addr*} %{segprot*} %{seg_addr_table*} \ %{Zseg_addr_table_filename*:-seg_addr_table_filename %*} \ |