defs.g++

来自「大名鼎鼎的嵌入式操作系统vxworks的完整的源代码」· G++ 代码 · 共 37 行

G++
37
字号
# defs.g++## modification history# --------------------# 01d,21may02,sn   Rename OBJS_$(TOOLENV) to OBJS_CPLUS_$(TOOLENV) to avoid clash#                  with ../../common/Makefile# 01c,20may02,sn   Add arch specific OBJS lists# 01b,04dec01,s_l  Remove mips from the list of arches using  frame.o# 01a,24oct01,sn   wrote## DESCRIPTION# This file contains the definitions used by libgcc/Makefile and libg++/MakefileOBJS_CPLUS_BASIC = __dummy.o _eh.o exception.o new.o opdel.o \		   opdelnt.o opvdel.o opvdelnt.o opnew.o opnewnt.o \		   opvnew.o opvnewnt.o tinfo.o tinfo2.o# frame.o is part of the C++ exception handling system on some targets# tramp.o is not really C++; it's needed for nested function support.# We don't include it along with the C intrinsics for scalability;# tramp.o references 'abort', which pulls in the signal library.# xp-bit.o just contains dummy definitions of long double support# routines needed by libio/libstdc++; the dummy definitions just# call 'abort'.OBJS_CPLUS_68k 		= frame.oOBJS_CPLUS_ppc		= frame.o tramp.oOBJS_CPLUS_pentium 	= frame.o xp-bit.oOBJS_CPLUS_sparc 	= frame.oOBJS_CPLUS_mips 	= frame-dwarf2.oOBJS_CPLUS_simpc 	= frame.oOBJS_CPLUS_simso 	= frame.oOBJS_CPLUS 	= $(OBJS_CPLUS_BASIC) $(OBJS_CPLUS_$(TOOLENV))

⌨️ 快捷键说明

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