mirror of
https://github.com/pmret/gcc-papermario.git
synced 2024-11-13 22:23:59 +01:00
68 lines
2.1 KiB
C
68 lines
2.1 KiB
C
/* Operating system specific defines to be used when targeting GCC for
|
|
hosting on Windows NT 3.x, using the Cygnus API
|
|
|
|
This is different to the winnt.h file, since that is used
|
|
to build GCC for use with a windows style library and tool
|
|
set, winnt.h uses the Microsoft tools to do that.
|
|
|
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU CC.
|
|
|
|
GNU CC is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GNU CC is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
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, 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
/* Ugly hack */
|
|
#include "rs6000/win-nt.h"
|
|
|
|
|
|
#ifdef CPP_PREDEFINES
|
|
#undef CPP_PREDEFINES
|
|
#endif
|
|
|
|
#define CPP_PREDEFINES "-D_WIN32 -DWINNT -D__CYGWIN32__ -DPOSIX \
|
|
-D_POWER -D_ARCH_PPC -D__PPC__ -Asystem(winnt) -Acpu(powerpc) -Amachine(powerpc)"
|
|
|
|
#undef CPP_SPEC
|
|
#define CPP_SPEC "-remap %{posix: -D_POSIX_SOURCE} %(cpp_cpu)"
|
|
|
|
/* We have to dynamic link to get to the system DLLs. All of libc, libm and
|
|
the Unix stuff is in cygwin.dll. The import library is called
|
|
'libcygwin.a'. For Windows applications, include more libraries, but
|
|
always include kernel32. We'd like to specific subsystem windows to
|
|
ld, but that doesn't work just yet. */
|
|
|
|
#undef LIB_SPEC
|
|
#define LIB_SPEC "-lcygwin %{mwindows:-luser32 -lgdi32 -lcomdlg32} -lkernel32"
|
|
|
|
#undef LINK_SPEC
|
|
#define LINK_SPEC "%{v:-V}"
|
|
|
|
#undef STARTFILE_SPEC
|
|
#define STARTFILE_SPEC "crti%O%s crt0%O%s"
|
|
|
|
#undef ENDFILE_SPEC
|
|
#define ENDFILE_SPEC "crtn%O%s"
|
|
|
|
#define PTRDIFF_TYPE "int"
|
|
#define WCHAR_UNSIGNED 1
|
|
#define WCHAR_TYPE_SIZE 16
|
|
#define WCHAR_TYPE "short unsigned int"
|
|
|
|
#define DBX_DEBUGGING_INFO
|
|
#undef SDB_DEBUGGING_INFO
|
|
#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
|