URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [config/] [i386/] [t-rtems-i386] - Rev 282
Compare with Previous | Blame | View Log
# Copyright (C) 1999, 2001, 2002, 2005, 2007 Free Software Foundation, Inc.## This file is part of GCC.## GCC 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 3, or (at your option)# any later version.## GCC 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 GCC; see the file COPYING3. If not see# <http://www.gnu.org/licenses/>.### This file was based on t-sol2 - x68 Solaris implementation. Actually,# the source code to create crti.o anf crtn.o are exactly the same# as the ones for Solaris. Later, we might want to have a RTEMS's# version of these files.#$(T)crti.o: $(srcdir)/config/i386/sol2-ci.asm $(GCC_PASSES)sed -e '/^!/d' <$(srcdir)/config/i386/sol2-ci.asm >crti.s$(GCC_FOR_TARGET) -c -o $(T)crti.o crti.s$(T)crtn.o: $(srcdir)/config/i386/sol2-cn.asm $(GCC_PASSES)sed -e '/^!/d' <$(srcdir)/config/i386/sol2-cn.asm >crtn.s$(GCC_FOR_TARGET) -c -o $(T)crtn.o crtn.s# We want fine grained libraries, so use the new code to build the# floating point emulation libraries.FPBIT = fp-bit.cDPBIT = dp-bit.cLIB2FUNCS_EXTRA = xp-bit.cdp-bit.c: $(srcdir)/config/fp-bit.cecho '#ifdef __LITTLE_ENDIAN__' > dp-bit.cecho '#define FLOAT_BIT_ORDER_MISMATCH' >>dp-bit.cecho '#endif' >> dp-bit.ccat $(srcdir)/config/fp-bit.c >> dp-bit.cfp-bit.c: $(srcdir)/config/fp-bit.cecho '#define FLOAT' > fp-bit.cecho '#ifdef __LITTLE_ENDIAN__' >> fp-bit.cecho '#define FLOAT_BIT_ORDER_MISMATCH' >>fp-bit.cecho '#endif' >> fp-bit.ccat $(srcdir)/config/fp-bit.c >> fp-bit.cxp-bit.c: $(srcdir)/config/fp-bit.cecho '#define EXTENDED_FLOAT_STUBS' > xp-bit.ccat $(srcdir)/config/fp-bit.c >> xp-bit.cMULTILIB_OPTIONS = mtune=i486/mtune=pentium/mtune=pentiumpro \msoft-floatMULTILIB_DIRNAMES= m486 mpentium mpentiumpro soft-floatMULTILIB_MATCHES = msoft-float=mno-m80387MULTILIB_MATCHES += mtune?pentium=mtune?k6 mtune?pentiumpro=mtune?mathlonMULTILIB_EXCEPTIONS = \mtune=pentium/*msoft-float* \mtune=pentiumpro/*msoft-float*EXTRA_MULTILIB_PARTS = crtbegin.o crtend.oLIBGCC = stmp-multilibINSTALL_LIBGCC = install-multilib
