blob: ff4fe6400170c4adbab8ceec7e76871af30c8d77 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Rick Chenf94c44e2017-12-26 13:55:52 +08002#
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 Chenf94c44e2017-12-26 13:55:52 +080012
Rick Chenf94c44e2017-12-26 13:55:52 +08001332bit-emul := elf32lriscv
1464bit-emul := elf64lriscv
15
16ifdef CONFIG_32BIT
17PLATFORM_LDFLAGS += -m $(32bit-emul)
Alexander Graf493d1e82018-04-23 07:59:45 +020018EFI_LDS := elf_riscv32_efi.lds
Rick Chenf94c44e2017-12-26 13:55:52 +080019endif
20
21ifdef CONFIG_64BIT
22PLATFORM_LDFLAGS += -m $(64bit-emul)
Alexander Graf493d1e82018-04-23 07:59:45 +020023EFI_LDS := elf_riscv64_efi.lds
Rick Chenf94c44e2017-12-26 13:55:52 +080024endif
25
Daniel Schwierzeck1d3b97c2018-09-23 19:15:15 +020026CONFIG_STANDALONE_LOAD_ADDR = 0x00000000
27LDFLAGS_STANDALONE += -T $(srctree)/examples/standalone/riscv.lds
Rick Chenf94c44e2017-12-26 13:55:52 +080028
29PLATFORM_CPPFLAGS += -ffixed-gp -fpic
Lukas Auer776e6332018-11-22 11:26:16 +010030PLATFORM_RELFLAGS += -fno-common -gdwarf-2 -ffunction-sections \
31 -fdata-sections
Bin Mengce7a8e02018-09-26 06:55:13 -070032LDFLAGS_u-boot += --gc-sections -static -pie
Alexander Graf493d1e82018-04-23 07:59:45 +020033
34EFI_CRT0 := crt0_riscv_efi.o
35EFI_RELOC := reloc_riscv_efi.o