diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-22 18:25:31 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-22 18:25:31 -0400 |
commit | 0fffa5e134c454a2a5b28ebf78bd28c1e84e0a5f (patch) | |
tree | 1b15c3498a00cb176a543a4500d6fa5225bbd1b7 | |
parent | 245c3e25d6754a5d7f298a01fddf53723010ca13 (diff) | |
download | gcc-0fffa5e134c454a2a5b28ebf78bd28c1e84e0a5f.zip gcc-0fffa5e134c454a2a5b28ebf78bd28c1e84e0a5f.tar.gz gcc-0fffa5e134c454a2a5b28ebf78bd28c1e84e0a5f.tar.bz2 |
(LIB_SPEC): Define to avoid -lg.
From-SVN: r10025
-rw-r--r-- | gcc/config/pa/pa.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 03f6ac0..3754263 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -227,6 +227,11 @@ extern int target_flags; #define LINK_SPEC "%{!shared:-u main} %{shared:-b}" +/* We don't want -lg. */ +#ifndef LIB_SPEC +#define LIB_SPEC "%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}" +#endif + /* Allow $ in identifiers. */ #define DOLLARS_IN_IDENTIFIERS 2 |