diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-22 07:21:03 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-02-22 07:21:03 -0500 |
commit | 63a526f779d353f6b7cd6b77ac00cdb47ee310e0 (patch) | |
tree | 6742f55995c5e0679e07404f8568dcd8466a8b3e /gcc | |
parent | 13fa4e7a47a5428094c20f90f5d713bba747ccd5 (diff) | |
download | gcc-63a526f779d353f6b7cd6b77ac00cdb47ee310e0.zip gcc-63a526f779d353f6b7cd6b77ac00cdb47ee310e0.tar.gz gcc-63a526f779d353f6b7cd6b77ac00cdb47ee310e0.tar.bz2 |
(LINK_SPEC, LIB_SPEC): New macros.
(PATH_SEPARATOR): Delete from here.
From-SVN: r6599
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/os2.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/config/i386/os2.h b/gcc/config/i386/os2.h index a35f333..1bc9b36 100644 --- a/gcc/config/i386/os2.h +++ b/gcc/config/i386/os2.h @@ -22,6 +22,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef DEFAULT_TARGET_MACHINE #define DEFAULT_TARGET_MACHINE "i386-os2" #endif +#ifndef LINK_SPEC +#define LINK_SPEC "/st:1048576/pm:vio/noi/a:16/e/bas:65536" +#endif +#ifndef LIB_SPEC +#define LIB_SPEC "libc" +#endif #ifndef STARTFILE_SPEC #define STARTFILE_SPEC "" #endif @@ -35,10 +41,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define LOCAL_INCLUDE_DIR "\\gcc\\include" #endif -#ifndef PATH_SEPARATOR -#define PATH_SEPARATOR ';' -#endif - #define YES_UNDERSCORES #include "i386/gstabs.h" |