blob: 3c0113629bf48b631a79147f91124b275426c6c0 [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#
14MIPSFLAGS = -march=mips64
15
16PLATFORM_CPPFLAGS += $(MIPSFLAGS)
17PLATFORM_CPPFLAGS += -mabi=64 -DCONFIG_64BIT
18ifdef CONFIG_SYS_BIG_ENDIAN
19PLATFORM_LDFLAGS += -m elf64btsmip
20else
21PLATFORM_LDFLAGS += -m elf64ltsmip
22endif
23
Masahiro Yamadaa0a15b42014-03-05 16:59:39 +090024CONFIG_STANDALONE_LOAD_ADDR ?= 0xffffffff80200000 \
25 -T $(srctree)/examples/standalone/mips64.lds