diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-04-02 07:54:48 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-04-02 07:54:48 -0400 |
commit | df52f9914d7066cec5bc14b21470c44a70c00244 (patch) | |
tree | cb07f3a781775f81f63ee8699c0228fce15b6eb6 /gcc | |
parent | 5a57ced09ea6d8e944c5417258cc80503d8e5aa0 (diff) | |
download | gcc-df52f9914d7066cec5bc14b21470c44a70c00244.zip gcc-df52f9914d7066cec5bc14b21470c44a70c00244.tar.gz gcc-df52f9914d7066cec5bc14b21470c44a70c00244.tar.bz2 |
(ASM_FILE_START, LIB_SPEC): Delete from here.
From-SVN: r9291
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/winnt/win-nt.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc/config/winnt/win-nt.h b/gcc/config/winnt/win-nt.h index d6ce5b5..1afdc16 100644 --- a/gcc/config/winnt/win-nt.h +++ b/gcc/config/winnt/win-nt.h @@ -19,20 +19,6 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -/* The global __fltused is necessary to cause the printf/scanf routines - for outputting/inputting floating point numbers to be loaded. Since this - is kind of hard to detect, we just do it all the time. */ - -#ifdef ASM_FILE_START -#undef ASM_FILE_START -#endif -#define ASM_FILE_START(FILE) \ - do { fprintf (FILE, "\t.file\t"); \ - output_quoted_string (FILE, dump_base_name); \ - fprintf (FILE, "\n"); \ - fprintf (FILE, ".global\t__fltused\n"); \ - } while (0) - #undef STARTFILE_SPEC #define STARTFILE_SPEC "" @@ -65,15 +51,4 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. { 0, 0, 0 } \ } -/* if the switch "-mwindows" is passed to ld, then specify to the Microsoft - linker the proper switches and libraries to build a graphical program */ - -#define LIB_SPEC "%{mwindows:-subsystem:windows -entry:WinMainCRTStartup \ - USER32.LIB GDI32.LIB COMDLG32.LIB WINSPOOL.LIB} \ - %{!mwindows:-subsystem:console -entry:mainCRTStartup} \ - %{mcrtmt:OLDNAMES.LIB LIBCMT.LIB KERNEL32.LIB ADVAPI32.LIB} \ - %{!mcrtmt:OLDNAMES.LIB LIBC.LIB KERNEL32.LIB ADVAPI32.LIB} \ - %{g:-debugtype:coff -debug:full} \ - %{v}" - #define STDC_VALUE 0 |