OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [config/] [alpha/] [linux.h] - Diff between revs 38 and 154

Only display areas with differences | Details | Blame | View Log

Rev 38 Rev 154
/* Definitions of target machine for GNU compiler,
/* Definitions of target machine for GNU compiler,
   for Alpha Linux-based GNU systems.
   for Alpha Linux-based GNU systems.
   Copyright (C) 1996, 1997, 1998, 2002, 2003, 2004, 2005, 2006, 2007
   Copyright (C) 1996, 1997, 1998, 2002, 2003, 2004, 2005, 2006, 2007
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
   Contributed by Richard Henderson.
   Contributed by Richard Henderson.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
the Free Software Foundation; either version 3, or (at your option)
any later version.
any later version.
 
 
GCC is distributed in the hope that it will be useful,
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#undef TARGET_DEFAULT
#undef TARGET_DEFAULT
#define TARGET_DEFAULT (MASK_FPREGS | MASK_GAS)
#define TARGET_DEFAULT (MASK_FPREGS | MASK_GAS)
 
 
#define TARGET_OS_CPP_BUILTINS()                                \
#define TARGET_OS_CPP_BUILTINS()                                \
    do {                                                        \
    do {                                                        \
        builtin_define ("__gnu_linux__");                       \
        builtin_define ("__gnu_linux__");                       \
        builtin_define ("_LONGLONG");                           \
        builtin_define ("_LONGLONG");                           \
        builtin_define_std ("linux");                           \
        builtin_define_std ("linux");                           \
        builtin_define_std ("unix");                            \
        builtin_define_std ("unix");                            \
        builtin_assert ("system=linux");                        \
        builtin_assert ("system=linux");                        \
        builtin_assert ("system=unix");                         \
        builtin_assert ("system=unix");                         \
        builtin_assert ("system=posix");                        \
        builtin_assert ("system=posix");                        \
        /* The GNU C++ standard library requires this.  */      \
        /* The GNU C++ standard library requires this.  */      \
        if (c_dialect_cxx ())                                   \
        if (c_dialect_cxx ())                                   \
          builtin_define ("_GNU_SOURCE");                       \
          builtin_define ("_GNU_SOURCE");                       \
    } while (0)
    } while (0)
 
 
#undef LIB_SPEC
#undef LIB_SPEC
#define LIB_SPEC \
#define LIB_SPEC \
  "%{pthread:-lpthread} \
  "%{pthread:-lpthread} \
   %{shared:-lc} \
   %{shared:-lc} \
   %{!shared: %{profile:-lc_p}%{!profile:-lc}}"
   %{!shared: %{profile:-lc_p}%{!profile:-lc}}"
 
 
#undef CPP_SPEC
#undef CPP_SPEC
#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
 
 
/* Show that we need a GP when profiling.  */
/* Show that we need a GP when profiling.  */
#undef TARGET_PROFILING_NEEDS_GP
#undef TARGET_PROFILING_NEEDS_GP
#define TARGET_PROFILING_NEEDS_GP 1
#define TARGET_PROFILING_NEEDS_GP 1
 
 
/* Don't care about faults in the prologue.  */
/* Don't care about faults in the prologue.  */
#undef TARGET_CAN_FAULT_IN_PROLOGUE
#undef TARGET_CAN_FAULT_IN_PROLOGUE
#define TARGET_CAN_FAULT_IN_PROLOGUE 1
#define TARGET_CAN_FAULT_IN_PROLOGUE 1
 
 
/* OS fixes up EV5 data fault on prefetch.  */
/* OS fixes up EV5 data fault on prefetch.  */
#undef TARGET_FIXUP_EV5_PREFETCH
#undef TARGET_FIXUP_EV5_PREFETCH
#define TARGET_FIXUP_EV5_PREFETCH 1
#define TARGET_FIXUP_EV5_PREFETCH 1
 
 
#undef WCHAR_TYPE
#undef WCHAR_TYPE
#define WCHAR_TYPE "int"
#define WCHAR_TYPE "int"
 
 
/* Define this so that all GNU/Linux targets handle the same pragmas.  */
/* Define this so that all GNU/Linux targets handle the same pragmas.  */
#define HANDLE_PRAGMA_PACK_PUSH_POP
#define HANDLE_PRAGMA_PACK_PUSH_POP
 
 
/* Determine whether the entire c99 runtime is present in the
/* Determine whether the entire c99 runtime is present in the
   runtime library.  */
   runtime library.  */
#define TARGET_C99_FUNCTIONS (OPTION_GLIBC)
#define TARGET_C99_FUNCTIONS (OPTION_GLIBC)
 
 
#define TARGET_POSIX_IO
#define TARGET_POSIX_IO
 
 
#define LINK_GCC_C_SEQUENCE_SPEC \
#define LINK_GCC_C_SEQUENCE_SPEC \
  "%{static:--start-group} %G %L %{static:--end-group}%{!static:%G}"
  "%{static:--start-group} %G %L %{static:--end-group}%{!static:%G}"
 
 
/* Use --as-needed -lgcc_s for eh support.  */
/* Use --as-needed -lgcc_s for eh support.  */
#ifdef HAVE_LD_AS_NEEDED
#ifdef HAVE_LD_AS_NEEDED
#define USE_LD_AS_NEEDED 1
#define USE_LD_AS_NEEDED 1
#endif
#endif
 
 
#define MD_UNWIND_SUPPORT "config/alpha/linux-unwind.h"
#define MD_UNWIND_SUPPORT "config/alpha/linux-unwind.h"
 
 
/* Define if long doubles should be mangled as 'g'.  */
/* Define if long doubles should be mangled as 'g'.  */
#define TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
#define TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.