37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
# make.MIPS64gnu - GNU compilation tools definitions for MIPS64
|
|
#
|
|
# Copyright 2000-2001 Wind River Systems, Inc.
|
|
#
|
|
# modification history
|
|
# --------------------
|
|
# 01m,06may05,rlg Changes for MIPS specific devices
|
|
# 01l,23apr04,yvp added ABI_SPEC
|
|
# 01k,10jan02,pes Move include of defs.mips after CPU and TOOL are defined
|
|
# 01j,09jan02,pes Move common definitions to defs.mips
|
|
# 01i,28nov01,tpw Remove -funroll-loops from MIPS*gnu* makefile fragments.
|
|
# 01h,30oct01,tpw Standardize kernel links and bootrom conversions.
|
|
# 01g,11oct01,dat SPR 20403, OPTIM_DRIVER must have -fvolatile
|
|
# 01f,25sep01,dat Location of defs.gnu changed to tool/gnu
|
|
# 01e,27jun01,agf add LONGCALL macro
|
|
# 01d,08feb01,mem Changed RES_LDFLAGS to -m vxr5ebmip
|
|
# 01c,11jan01,mem Added -mno-branch-likely.
|
|
# 01b,04jan01,mem Added support for objcopy-style extraction.
|
|
# 01a,08dec00,pes created based on make.r4000gnu
|
|
#
|
|
# DESCRIPTION
|
|
# This file contains MIPS64 specific definitions and flags for the GNU
|
|
# software generation tools (compiler, assembler, linker etc) when used
|
|
# to generate a 64 bit compatible vxWorks.
|
|
#*/
|
|
|
|
CPU = MIPS64
|
|
TOOL = gnu
|
|
ABI_SPEC = MIPS64BE
|
|
|
|
include $(TGT_DIR)/h/tool/gnu/defs.mips
|
|
#add the next two line for MIPS specific devices
|
|
LD_SCRIPT_RAM = -T $(TGT_DIR)/h/tool/gnu/ldscripts/link.MIPSRAM
|
|
LD_SCRIPT_ROM = -T $(TGT_DIR)/h/tool/gnu/ldscripts/link.MIPSROM
|
|
|
|
# end of make.MIPS64gnu
|