blob: c55eb7f2ee9089e042d566c873b3740370c52332 [file] [log] [blame]
Zhi-zhou Zhang32afad72012-10-16 15:02:08 +02001#
2# (C) Copyright 2003
3# Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
4#
Wolfgang Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
Zhi-zhou Zhang32afad72012-10-16 15:02:08 +02006#
7
8#
9# Default optimization level for MIPS64
10#
11# Note: Toolchains with binutils prior to v2.16
12# are no longer supported by U-Boot MIPS tree!
13#
Masahiro Yamadacfda6bd2014-03-05 17:25:37 +090014PLATFORM_CPPFLAGS += -DCONFIG_MIPS64 -march=mips64
Zhi-zhou Zhang32afad72012-10-16 15:02:08 +020015PLATFORM_CPPFLAGS += -mabi=64 -DCONFIG_64BIT
16ifdef CONFIG_SYS_BIG_ENDIAN
17PLATFORM_LDFLAGS += -m elf64btsmip
18else
19PLATFORM_LDFLAGS += -m elf64ltsmip
20endif
21
Masahiro Yamadaa0a15b42014-03-05 16:59:39 +090022CONFIG_STANDALONE_LOAD_ADDR ?= 0xffffffff80200000 \
23 -T $(srctree)/examples/standalone/mips64.lds