aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-02-13 09:41:35 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-02-13 09:41:35 -0500
commita4c80850bc9444e603fbbf725ee7f69d5f293aa7 (patch)
tree1017ae7b0ebf1db349713cdbf6b8398acb39ae28
parentaf2f462f04749250065633e40ae498169d367b89 (diff)
downloadgcc-a4c80850bc9444e603fbbf725ee7f69d5f293aa7.zip
gcc-a4c80850bc9444e603fbbf725ee7f69d5f293aa7.tar.gz
gcc-a4c80850bc9444e603fbbf725ee7f69d5f293aa7.tar.bz2
(OBJECT_SUFFIX): New macro.
(LIB_SPEC, STARTFILE_SPEC): Adjust to include better set of libs. From-SVN: r8929
-rw-r--r--gcc/config/i386/os2.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/gcc/config/i386/os2.h b/gcc/config/i386/os2.h
index ca65478..6913810 100644
--- a/gcc/config/i386/os2.h
+++ b/gcc/config/i386/os2.h
@@ -1,6 +1,6 @@
/* Definitions of target machine for GNU compiler
for an Intel i386 or later processor running OS/2 2.x.
- Copyright (C) 1993, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
Contributed by Samuel Figueroa (figueroa@cs.nyu.edu)
This file is part of GNU CC.
@@ -22,14 +22,17 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef DEFAULT_TARGET_MACHINE
#define DEFAULT_TARGET_MACHINE "i386-os2"
#endif
+#ifndef OBJECT_SUFFIX
+#define OBJECT_SUFFIX "obj"
+#endif
#ifndef LINK_SPEC
#define LINK_SPEC "/st:1048576/pm:vio/noi/a:16/e/bas:65536/nol"
#endif
#ifndef LIB_SPEC
-#define LIB_SPEC "libc"
+#define LIB_SPEC "libgcc libc"
#endif
#ifndef STARTFILE_SPEC
-#define STARTFILE_SPEC ""
+#define STARTFILE_SPEC "libcrt.lib"
#endif
#ifndef MD_EXEC_PREFIX
#define MD_EXEC_PREFIX "\\gcc\\bin\\"