blob: cefdbe65e112e3d2fe7ec946624b5e974b3a7d43 [file] [log] [blame]
wdenk6069ff22003-02-28 00:49:47 +00001#
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+
wdenk6069ff22003-02-28 00:49:47 +00006#
7
Daniel Schwierzeck837cad12014-10-26 14:16:23 +01008ifdef CONFIG_SYS_BIG_ENDIAN
932bit-emul := elf32btsmip
1064bit-emul := elf64btsmip
1132bit-bfd := elf32-tradbigmips
1264bit-bfd := elf64-tradbigmips
13PLATFORM_CPPFLAGS += -EB
14PLATFORM_LDFLAGS += -EB
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020015endif
16
17ifdef CONFIG_SYS_LITTLE_ENDIAN
Daniel Schwierzeck837cad12014-10-26 14:16:23 +01001832bit-emul := elf32ltsmip
1964bit-emul := elf64ltsmip
2032bit-bfd := elf32-tradlittlemips
2164bit-bfd := elf64-tradlittlemips
22PLATFORM_CPPFLAGS += -EL
23PLATFORM_LDFLAGS += -EL
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020024endif
25
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010026ifdef CONFIG_32BIT
27PLATFORM_CPPFLAGS += -mabi=32
28PLATFORM_LDFLAGS += -m $(32bit-emul)
29OBJCOPYFLAGS += -O $(32bit-bfd)
Daniel Schwierzeck2c0e3de2012-08-21 23:27:37 +020030endif
31
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010032ifdef CONFIG_64BIT
33PLATFORM_CPPFLAGS += -mabi=64
34PLATFORM_LDFLAGS += -m$(64bit-emul)
35OBJCOPYFLAGS += -O $(64bit-bfd)
36endif
37
Masahiro Yamada90f984e2014-07-30 14:08:23 +090038PLATFORM_CPPFLAGS += -D__MIPS__
Álvaro Fernández Rojas47cf4652017-04-20 20:36:27 +020039PLATFORM_ELFENTRY = "__start"
40PLATFORM_ELFFLAGS += -B mips $(OBJCOPYFLAGS)
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090041
42#
43# From Linux arch/mips/Makefile
44#
45# GCC uses -G 0 -mabicalls -fpic as default. We don't want PIC in the kernel
46# code since it only slows down the whole thing. At some point we might make
47# use of global pointer optimizations but their use of $28 conflicts with
48# the current pointer optimization.
49#
50# The DECStation requires an ECOFF kernel for remote booting, other MIPS
51# machines may also. Since BFD is incredibly buggy with respect to
52# crossformat linking we rely on the elf2ecoff tool for format conversion.
53#
54# cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
55# cflags-y += -msoft-float
56# LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
57# MODFLAGS += -mlong-calls
58#
Paul Burton703ec9d2017-06-19 11:53:47 -070059ifndef CONFIG_SPL_BUILD
60OBJCOPYFLAGS += -j .got -j .rel -j .padding -j .dtb.init.rodata
61LDFLAGS_FINAL += --emit-relocs
Daniel Schwierzecke92d9122015-12-19 20:20:47 +010062endif
63
Paul Burton703ec9d2017-06-19 11:53:47 -070064PLATFORM_CPPFLAGS += -G 0 -mno-abicalls -fno-pic
Shinya Kuribayashi00101dd2007-10-21 21:30:42 +090065PLATFORM_CPPFLAGS += -msoft-float
Daniel Schwierzeck837cad12014-10-26 14:16:23 +010066PLATFORM_LDFLAGS += -G 0 -static -n -nostdlib
Daniel Schwierzeck660da092011-04-15 17:16:44 +020067PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
Paul Burton703ec9d2017-06-19 11:53:47 -070068LDFLAGS_FINAL += --gc-sections
Daniel Schwierzeck07f5b962016-05-26 15:28:38 +020069OBJCOPYFLAGS += -j .text -j .rodata -j .data -j .u_boot_list