Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Macpaul Lin | 463d47f | 2011-10-11 22:33:19 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2002 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | # |
| 6 | # (C) Copyright 2011 |
| 7 | # Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com> |
| 8 | # Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> |
| 9 | # |
Macpaul Lin | 463d47f | 2011-10-11 22:33:19 +0000 | [diff] [blame] | 10 | |
Masahiro Yamada | 9b6e2c3 | 2014-02-28 14:33:30 +0900 | [diff] [blame] | 11 | ifeq ($(CROSS_COMPILE),) |
| 12 | CROSS_COMPILE := nds32le-linux- |
| 13 | endif |
Macpaul Lin | 463d47f | 2011-10-11 22:33:19 +0000 | [diff] [blame] | 14 | |
Daniel Schwierzeck | 1d3b97c | 2018-09-23 19:15:15 +0200 | [diff] [blame] | 15 | CONFIG_STANDALONE_LOAD_ADDR = 0x300000 |
| 16 | LDFLAGS_STANDALONE += -T $(srctree)/examples/standalone/nds32.lds |
Macpaul Lin | 463d47f | 2011-10-11 22:33:19 +0000 | [diff] [blame] | 17 | |
Rick Chen | 9135858 | 2019-01-15 10:41:20 +0800 | [diff] [blame] | 18 | PLATFORM_RELFLAGS += -fno-common -mrelax -mno-ext-fpu-dp -mfloat-abi=soft |
Macpaul Lin | 463d47f | 2011-10-11 22:33:19 +0000 | [diff] [blame] | 19 | PLATFORM_RELFLAGS += -gdwarf-2 |
Rick Chen | e690148 | 2019-01-15 11:07:54 +0800 | [diff] [blame] | 20 | PLATFORM_CPPFLAGS += -D__nds32__ -ffixed-10 -fpie -mcmodel=large |
Macpaul Lin | 463d47f | 2011-10-11 22:33:19 +0000 | [diff] [blame] | 21 | |
Rick Chen | 9135858 | 2019-01-15 10:41:20 +0800 | [diff] [blame] | 22 | LDFLAGS_u-boot = --gc-sections --relax -pie --mabi=AABI |