Commit 0aca3a61 by Geoffrey Keating Committed by Geoffrey Keating

* config/darwin8.h (LIB_SPEC): Switch -lmx and -lSystem.

From-SVN: r95805
parent 2af51b88
2005-03-02 Geoffrey Keating <geoffk@apple.com>
* config/darwin8.h (LIB_SPEC): Switch -lmx and -lSystem.
2005-03-02 Devang Patel <dpatel@apple.com> 2005-03-02 Devang Patel <dpatel@apple.com>
Undo PR tree-optimization/18815 fix. Undo PR tree-optimization/18815 fix.
......
...@@ -22,11 +22,13 @@ Boston, MA 02111-1307, USA. */ ...@@ -22,11 +22,13 @@ Boston, MA 02111-1307, USA. */
/* Darwin 7.0 and above have C99 functions. */ /* Darwin 7.0 and above have C99 functions. */
#define TARGET_C99_FUNCTIONS 1 #define TARGET_C99_FUNCTIONS 1
/* Machine dependent libraries. Include libmx when compiling on Darwin 7.0 /* Machine dependent libraries. Include libmx when compiling on
and above. Include libSystemStubs when compiling on 8.0 and above and Darwin 7.0 and above, but before libSystem, since the functions are
not 64-bit long double. */ actually in libSystem but for 7.x compatibility we want them to be
looked for in libmx first. Include libSystemStubs when compiling
on 8.0 and above and not 64-bit long double. */
#undef LIB_SPEC #undef LIB_SPEC
#define LIB_SPEC "%{!static:\ #define LIB_SPEC "%{!static:\
%{!mlong-double-64:%{pg:-lSystemStubs_profile;:-lSystemStubs}} \ %{!mlong-double-64:%{pg:-lSystemStubs_profile;:-lSystemStubs}} \
-lSystem -lmx}" -lmx -lSystem}"
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