netbsd-elf.h

来自「linux下的gcc编译器」· C头文件 代码 · 共 62 行

H
62
字号
/* Definitions of target machine for GNU compiler,   for NetBSD/vax ELF systems.   Copyright (C) 2002 Free Software Foundation, Inc.This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING.  If not, write tothe Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  *//* Names to predefine in the preprocessor for this target OS.  */#undef TARGET_OS_CPP_BUILTINS#define TARGET_OS_CPP_BUILTINS()		\  do						\    {						\      NETBSD_OS_CPP_BUILTINS_ELF();		\    }						\  while (0)#undef CPP_SPEC#define CPP_SPEC NETBSD_CPP_SPEC#define NETBSD_ENTRY_POINT "__start"#undef LINK_SPEC#if 1/* FIXME: We must link all executables statically until PIC support   is added to the compiler.  */#define LINK_SPEC \  "%{assert*} %{R*} %{rpath*} \   %{shared:%eThe -shared option is not currently supported for VAX ELF.} \   %{!shared: \     -dc -dp \     %{!nostdlib: \       %{!r*: \	 %{!e*:-e %(netbsd_entry_point)}}} \     %{!static:-static} \     %{static:-static}}"#else#define LINK_SPEC NETBSD_LINK_SPEC_ELF#endif#define EXTRA_SPECS				\  { "netbsd_entry_point", NETBSD_ENTRY_POINT },/* We use gas, not the UNIX assembler.  */#undef TARGET_DEFAULT#define TARGET_DEFAULT 0#undef ASM_FINAL_SPEC

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?