Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2002 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | # |
| 6 | # Copyright (c) 2017 Microsemi Corporation. |
| 7 | # Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com> |
| 8 | # |
| 9 | # Copyright (C) 2017 Andes Technology Corporation |
| 10 | # Rick Chen, Andes Technology Corporation <rick@andestech.com> |
| 11 | # |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 12 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 13 | 32bit-emul := elf32lriscv |
| 14 | 64bit-emul := elf64lriscv |
| 15 | |
| 16 | ifdef CONFIG_32BIT |
| 17 | PLATFORM_LDFLAGS += -m $(32bit-emul) |
Alexander Graf | 493d1e8 | 2018-04-23 07:59:45 +0200 | [diff] [blame] | 18 | EFI_LDS := elf_riscv32_efi.lds |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 19 | endif |
| 20 | |
| 21 | ifdef CONFIG_64BIT |
| 22 | PLATFORM_LDFLAGS += -m $(64bit-emul) |
Alexander Graf | 493d1e8 | 2018-04-23 07:59:45 +0200 | [diff] [blame] | 23 | EFI_LDS := elf_riscv64_efi.lds |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 24 | endif |
| 25 | |
Lukas Auer | 91882c4 | 2019-01-04 01:37:34 +0100 | [diff] [blame] | 26 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x00000000 |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 27 | |
| 28 | PLATFORM_CPPFLAGS += -ffixed-gp -fpic |
Lukas Auer | 776e633 | 2018-11-22 11:26:16 +0100 | [diff] [blame] | 29 | PLATFORM_RELFLAGS += -fno-common -gdwarf-2 -ffunction-sections \ |
| 30 | -fdata-sections |
Bin Meng | ce7a8e0 | 2018-09-26 06:55:13 -0700 | [diff] [blame] | 31 | LDFLAGS_u-boot += --gc-sections -static -pie |
Alexander Graf | 493d1e8 | 2018-04-23 07:59:45 +0200 | [diff] [blame] | 32 | |
| 33 | EFI_CRT0 := crt0_riscv_efi.o |
| 34 | EFI_RELOC := reloc_riscv_efi.o |