Commit ae077284 by Eric Christopher

darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Translate -shared to -Zdynamiclib.

2007-05-02  Eric Christopher  <echristo@apple.com>

	    * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Translate
	    -shared to -Zdynamiclib.

From-SVN: r124372
parent a0465257
2007-05-02 Eric Christopher <echristo@apple.com>
* config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Translate
-shared to -Zdynamiclib.
2007-05-02 Seongbae Park <seongbae.park@gmail.com> 2007-05-02 Seongbae Park <seongbae.park@gmail.com>
PR c++/31663 PR c++/31663
...@@ -39,22 +44,22 @@ ...@@ -39,22 +44,22 @@
2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com> 2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
* doc/invoke.texi: Fix typo, 'AMD Family 10h core' instead of * doc/invoke.texi: Fix typo, 'AMD Family 10h core' instead of
'AMD Family 10 core'. 'AMD Family 10 core'.
2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com> 2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
* config/i386/i386.c (override_options): Accept k8-sse3, opteron-sse3 * config/i386/i386.c (override_options): Accept k8-sse3, opteron-sse3
and athlon64-sse3 as improved versions of k8, opteron and athlon64 and athlon64-sse3 as improved versions of k8, opteron and athlon64
with SSE3 instruction set support. with SSE3 instruction set support.
* doc/invoke.texi: Likewise. * doc/invoke.texi: Likewise.
2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com> 2007-05-01 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
* config/i386/i386.c (override_options): Tuning 32-byte loop * config/i386/i386.c (override_options): Tuning 32-byte loop
alignment for amdfam10 architecture. Increasing the max loop alignment for amdfam10 architecture. Increasing the max loop
alignment to 24 bytes. alignment to 24 bytes.
2007-05-01 Kazu Hirata <kazu@codesourcery.com> 2007-05-01 Kazu Hirata <kazu@codesourcery.com>
* config/m68k/constraints.md: New. * config/m68k/constraints.md: New.
...@@ -191,7 +196,7 @@ ...@@ -191,7 +196,7 @@
* config/xtensa/lib1funcs.asm (__umodsi3, __modsi3): Rearrange so that * config/xtensa/lib1funcs.asm (__umodsi3, __modsi3): Rearrange so that
DIV0 exception can fall through to a normal return. DIV0 exception can fall through to a normal return.
2007-04-30 Alexandre Oliva <aoliva@redhat.com> 2007-04-30 Alexandre Oliva <aoliva@redhat.com>
PR middle-end/22156 PR middle-end/22156
...@@ -514,7 +519,7 @@ ...@@ -514,7 +519,7 @@
2007-04-26 Anatoly Sokolov <aesok@post.ru> 2007-04-26 Anatoly Sokolov <aesok@post.ru>
* config/avr/avr.c (avr_mcu_types): Add support for ATmega8HVA and * config/avr/avr.c (avr_mcu_types): Add support for ATmega8HVA and
ATmega16HVA devices. Move AT90USB82 device to 'avr5' architecture. ATmega16HVA devices. Move AT90USB82 device to 'avr5' architecture.
* config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.). * config/avr/avr.h (LINK_SPEC, CRT_BINUTILS_SPECS): (Ditto.).
* config/avr/t-avr (MULTILIB_MATCHES): (Ditto.). * config/avr/t-avr (MULTILIB_MATCHES): (Ditto.).
...@@ -701,12 +706,12 @@ ...@@ -701,12 +706,12 @@
2007-04-24 Richard Guenther <rguenther@suse.de> 2007-04-24 Richard Guenther <rguenther@suse.de>
Olga Golovanevsky <olga@il.ibm.com> Olga Golovanevsky <olga@il.ibm.com>
* fold-const.c (multiple_of_p): Check for bottom * fold-const.c (multiple_of_p): Check for bottom
to be zero. to be zero.
2007-04-24 Richard Henderson <rth@redhat.com> 2007-04-24 Richard Henderson <rth@redhat.com>
* libgcc2.h (AVOID_FP_TYPE_CONVERSION): Rename from * libgcc2.h (AVOID_FP_TYPE_CONVERSION): Rename from
IS_IBM_EXTENDED. Also define in terms of WIDEST_HARDWARE_FP_SIZE. IS_IBM_EXTENDED. Also define in terms of WIDEST_HARDWARE_FP_SIZE.
* libgcc2.c (__floatdisf): Avoid double-word arithmetic when * libgcc2.c (__floatdisf): Avoid double-word arithmetic when
looking for non-zero bits shifted out. Avoid a recursive call looking for non-zero bits shifted out. Avoid a recursive call
......
...@@ -147,6 +147,7 @@ extern GTY(()) int darwin_ms_struct; ...@@ -147,6 +147,7 @@ extern GTY(()) int darwin_ms_struct;
{ "-multiply_defined", "-Zmultiply_defined" }, \ { "-multiply_defined", "-Zmultiply_defined" }, \
{ "-multi_module", "-Zmulti_module" }, \ { "-multi_module", "-Zmulti_module" }, \
{ "-static", "-static -Wa,-static" }, \ { "-static", "-static -Wa,-static" }, \
{ "-shared", "-Zdynamiclib" }, \
{ "-single_module", "-Zsingle_module" }, \ { "-single_module", "-Zsingle_module" }, \
{ "-unexported_symbols_list", "-Zunexported_symbols_list" }, \ { "-unexported_symbols_list", "-Zunexported_symbols_list" }, \
SUBTARGET_OPTION_TRANSLATE_TABLE SUBTARGET_OPTION_TRANSLATE_TABLE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment