diff options
author | Anton Blanchard <anton@samba.org> | 2014-03-10 06:06:12 -0400 |
---|---|---|
committer | Anton Blanchard <anton@samba.org> | 2014-04-22 20:08:07 -0400 |
commit | 721aeaa9fdf35a672eef8ebdc4cd04bde38c3cea (patch) | |
tree | 74b624cf1a5b1198eb0465ef7080e258d7d7413b | |
parent | 24a1bdc358bf3c533f7d575202e92aaca0f91761 (diff) |
powerpc: Build little endian ppc64 kernel with ABIv2
Build the little endian ppc64 kernel with ABIv2 if the toolchain
supports it. We can identify an ABIv2 capable toolchain by the
-mabi=elfv2 compiler flag.
Signed-off-by: Anton Blanchard <anton@samba.org>
-rw-r--r-- | arch/powerpc/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index e8dd01af504d..5ba603b2fb4a 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile | |||
@@ -113,9 +113,13 @@ else | |||
113 | endif | 113 | endif |
114 | endif | 114 | endif |
115 | 115 | ||
116 | CFLAGS-$(CONFIG_PPC64) := -mtraceback=no -mcall-aixdesc | 116 | CFLAGS-$(CONFIG_PPC64) := -mtraceback=no |
117 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv1) | 117 | ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y) |
118 | AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv1) | 118 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2,-mcall-aixdesc) |
119 | AFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mabi=elfv2) | ||
120 | else | ||
121 | CFLAGS-$(CONFIG_PPC64) += -mcall-aixdesc | ||
122 | endif | ||
119 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,-mminimal-toc) | 123 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mcmodel=medium,-mminimal-toc) |
120 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions) | 124 | CFLAGS-$(CONFIG_PPC64) += $(call cc-option,-mno-pointers-to-nested-functions) |
121 | CFLAGS-$(CONFIG_PPC32) := -ffixed-r2 $(MULTIPLEWORD) | 125 | CFLAGS-$(CONFIG_PPC32) := -ffixed-r2 $(MULTIPLEWORD) |