diff options
author | Doug Evans <dje@gnu.org> | 1997-03-18 19:30:01 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1997-03-18 19:30:01 +0000 |
commit | 2d5ff2a7ce697a7d6f54aa76e0e743ca43a15942 (patch) | |
tree | c1f0f3885fcb8f2b6a02a11770d5c4e86001fc2b | |
parent | 2b3600acb4eceda3000312002ec78fecd5a39d30 (diff) | |
download | gcc-2d5ff2a7ce697a7d6f54aa76e0e743ca43a15942.zip gcc-2d5ff2a7ce697a7d6f54aa76e0e743ca43a15942.tar.gz gcc-2d5ff2a7ce697a7d6f54aa76e0e743ca43a15942.tar.bz2 |
(LIB_SPEC): -lprof1 requires -lpdf for OSF4.
From-SVN: r13732
-rw-r--r-- | gcc/config/alpha/alpha.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index badbb99..9fbd818 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -44,9 +44,9 @@ Boston, MA 02111-1307, USA. */ #define SIGNED_CHAR_SPEC "%{funsigned-char:-D__CHAR_UNSIGNED__}" -/* Under OSF/1, -p and -pg require -lprof1. */ +/* Under OSF4, -p and -pg require -lprof1, and -lprof1 requires -lpdf. */ -#define LIB_SPEC "%{p:-lprof1} %{pg:-lprof1} %{a:-lprof2} -lc" +#define LIB_SPEC "%{p:-lprof1 -lpdf} %{pg:-lprof1 -lpdf} %{a:-lprof2} -lc" /* Pass "-G 8" to ld because Alpha's CC does. Pass -O3 if we are optimizing, -O1 if we are not. Pass -shared, -non_shared or |