diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2004-04-30 20:09:51 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2004-04-30 20:09:51 +0000 |
commit | 5076da17d212acc01b53d287b93d482f55eef337 (patch) | |
tree | 0ec348df86e68d29406e83214b7173e895a1d6e5 /gcc/config/alpha | |
parent | d38bc601796ae126c74825b6d4d8c5ad729eeaf6 (diff) | |
download | gcc-5076da17d212acc01b53d287b93d482f55eef337.zip gcc-5076da17d212acc01b53d287b93d482f55eef337.tar.gz gcc-5076da17d212acc01b53d287b93d482f55eef337.tar.bz2 |
re PR other/1963 (collect2 interprets "-oldstyle_liblookup" as "-o ldstyle_liblookup")
PR other/1963
* config/alpha/osf.h (SWITCHES_NEED_SPACES): Define.
From-SVN: r81363
Diffstat (limited to 'gcc/config/alpha')
-rw-r--r-- | gcc/config/alpha/osf.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/config/alpha/osf.h b/gcc/config/alpha/osf.h index fd72ba3..f8b4eca 100644 --- a/gcc/config/alpha/osf.h +++ b/gcc/config/alpha/osf.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler, for DEC Alpha on OSF/1. - Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2001, 2002, 2003 - Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2001, 2002, 2003, + 2004 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu) This file is part of GCC. @@ -169,6 +169,10 @@ __enable_execute_stack (void *addr) \ #define LD_INIT_SWITCH "-init" #define LD_FINI_SWITCH "-fini" +/* The linker needs a space after "-o". This allows -oldstyle_liblookup to + be passed to ld. */ +#define SWITCHES_NEED_SPACES "o" + /* Select a format to encode pointers in exception handling data. CODE is 0 for data, 1 for code labels, 2 for function pointers. GLOBAL is true if the symbol may be affected by dynamic relocations. |