From a4c80850bc9444e603fbbf725ee7f69d5f293aa7 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 13 Feb 1995 09:41:35 -0500 Subject: [PATCH] (OBJECT_SUFFIX): New macro. (LIB_SPEC, STARTFILE_SPEC): Adjust to include better set of libs. From-SVN: r8929 --- gcc/config/i386/os2.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gcc/config/i386/os2.h b/gcc/config/i386/os2.h index ca654780b48..69138106549 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\\" -- 2.30.2