blob: 415ec8afd2d7016f7d87379a1ab491a3907644e9 [file] [log] [blame]
wdenk4fc95692003-02-28 00:49:47 +00001#
2# (C) Copyright 2003
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk4fc95692003-02-28 00:49:47 +00006#
7
Daniel Schwierzeckc03df262014-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
Masahiro Yamadaf0ac9e02014-02-28 14:33:30 +090015endif
Mike Frysinger8378ba42009-06-14 23:33:14 -040016
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010017ifdef CONFIG_SYS_LITTLE_ENDIAN
1832bit-emul := elf32ltsmip
1964bit-emul := elf64ltsmip
2032bit-bfd := elf32-tradlittlemips
2164bit-bfd := elf64-tradlittlemips
22PLATFORM_CPPFLAGS += -EL
23PLATFORM_LDFLAGS += -EL
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020024endif
25
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010026ifdef CONFIG_32BIT
27PLATFORM_CPPFLAGS += -mabi=32
28PLATFORM_LDFLAGS += -m $(32bit-emul)
29OBJCOPYFLAGS += -O $(32bit-bfd)
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020030endif
31
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010032ifdef CONFIG_64BIT
33PLATFORM_CPPFLAGS += -mabi=64
34PLATFORM_LDFLAGS += -m$(64bit-emul)
35OBJCOPYFLAGS += -O $(64bit-bfd)
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020036endif
37
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010038cpuflags-$(CONFIG_CPU_MIPS32_R1) += -march=mips32 -Wa,-mips32
39cpuflags-$(CONFIG_CPU_MIPS32_R2) += -march=mips32r2 -Wa,-mips32r2
40cpuflags-$(CONFIG_CPU_MIPS64_R1) += -march=mips64 -Wa,-mips64
41cpuflags-$(CONFIG_CPU_MIPS64_R2) += -march=mips64r2 -Wa,-mips64r2
42PLATFORM_CPPFLAGS += $(cpuflags-y)
Daniel Schwierzeckc390ba52012-08-21 23:27:37 +020043
Masahiro Yamada4869aee2014-07-30 14:08:23 +090044PLATFORM_CPPFLAGS += -D__MIPS__
Shinya Kuribayashi4b6d2802007-10-21 21:30:42 +090045
46#
47# From Linux arch/mips/Makefile
48#
49# GCC uses -G 0 -mabicalls -fpic as default. We don't want PIC in the kernel
50# code since it only slows down the whole thing. At some point we might make
51# use of global pointer optimizations but their use of $28 conflicts with
52# the current pointer optimization.
53#
54# The DECStation requires an ECOFF kernel for remote booting, other MIPS
55# machines may also. Since BFD is incredibly buggy with respect to
56# crossformat linking we rely on the elf2ecoff tool for format conversion.
57#
58# cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
59# cflags-y += -msoft-float
60# LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
61# MODFLAGS += -mlong-calls
62#
Shinya Kuribayashi8bf10e22008-06-05 22:29:00 +090063# On the other hand, we want PIC in the U-Boot code to relocate it from ROM
64# to RAM. $28 is always used as gp.
Shinya Kuribayashi4b6d2802007-10-21 21:30:42 +090065#
Daniel Schwierzeckeda26dd2015-12-19 20:20:47 +010066ifdef CONFIG_SPL_BUILD
67PF_ABICALLS := -mno-abicalls
68PF_PIC := -fno-pic
69PF_PIE :=
70else
71PF_ABICALLS := -mabicalls
72PF_PIC := -fpic
73PF_PIE := -pie
74PF_OBJCOPY := -j .got -j .u_boot_list -j .rel.dyn -j .padding
75endif
76
77PLATFORM_CPPFLAGS += -G 0 $(PF_ABICALLS) $(PF_PIC)
Shinya Kuribayashi4b6d2802007-10-21 21:30:42 +090078PLATFORM_CPPFLAGS += -msoft-float
Daniel Schwierzeckc03df262014-10-26 14:16:23 +010079PLATFORM_LDFLAGS += -G 0 -static -n -nostdlib
Daniel Schwierzeck089f2a12011-04-15 17:16:44 +020080PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
Daniel Schwierzeckeda26dd2015-12-19 20:20:47 +010081LDFLAGS_FINAL += --gc-sections $(PF_PIE)
82OBJCOPYFLAGS += -j .text -j .rodata -j .data $(PF_OBJCOPY)