diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-11-05 19:42:13 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-11-05 19:42:13 +0000 |
commit | 99022b47692448be61dc25b45894f6b776ad2491 (patch) | |
tree | 253e0b90b68a07c6fbb8cc931f3a6d3d1da20066 | |
parent | b222feb22fe17af0b99bff4929678a7737462d65 (diff) | |
download | gcc-99022b47692448be61dc25b45894f6b776ad2491.zip gcc-99022b47692448be61dc25b45894f6b776ad2491.tar.gz gcc-99022b47692448be61dc25b45894f6b776ad2491.tar.bz2 |
Specify full pathname of ld, nm, and strip to collect.
From-SVN: r2693
-rw-r--r-- | gcc/config/i386/osfrose.h | 5 | ||||
-rw-r--r-- | gcc/config/mips/osfrose.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/config/i386/osfrose.h b/gcc/config/i386/osfrose.h index 1c60d57..a8db862 100644 --- a/gcc/config/i386/osfrose.h +++ b/gcc/config/i386/osfrose.h @@ -323,6 +323,11 @@ while (0) /* Tell collect that the object format is OSF/rose. */ #define OBJECT_FORMAT_ROSE +/* Tell collect where the appropriate binaries are. */ +#define REAL_LD_FILE_NAME "/usr/ccs/gcc/gld" +#define REAL_NM_FILE_NAME "/usr/ccs/bin/nm" +#define REAL_STRIP_FILE_NAME "/usr/ccs/bin/strip" + /* Use atexit for static constructors/destructors, instead of defining our own exit function. */ #define HAVE_ATEXIT diff --git a/gcc/config/mips/osfrose.h b/gcc/config/mips/osfrose.h index 78629e7..ce1043f 100644 --- a/gcc/config/mips/osfrose.h +++ b/gcc/config/mips/osfrose.h @@ -135,6 +135,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Tell collect that the object format is OSF/rose. */ #define OBJECT_FORMAT_ROSE +/* Tell collect where the appropriate binaries are. */ +#define REAL_LD_FILE_NAME "/usr/ccs/gcc/gld" +#define REAL_NM_FILE_NAME "/usr/ccs/bin/nm" +#define REAL_STRIP_FILE_NAME "/usr/ccs/bin/strip" + /* Use atexit for static constructors/destructors, instead of defining our own exit function. */ #define HAVE_ATEXIT |