aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMike Frysinger <michael.frysinger@analog.com>2007-10-21 10:55:18 -0400
committerBryan Wu <bryan.wu@analog.com>2007-10-21 10:55:18 -0400
commit1c668d82465cd5c17030c0f69561841374380ac8 (patch)
treeae50c964e2b7860f4c53d70dd2853d440a9ddb20 /arch
parent066954a3891d32198edad3b319792d8db6a6a575 (diff)
Blackfin arch: -mno-fdpic works
now that -mno-fdpic works, force it on so that we can use any blackfin toolchain to build up the kernel and kernel modules wrap -mno-fdpic in $(call cc-option,-mno-fdpic) so that older toolchains will still work Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/blackfin/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile
index d80421c7b302..4a208f30f5c4 100644
--- a/arch/blackfin/Makefile
+++ b/arch/blackfin/Makefile
@@ -12,6 +12,8 @@ LDFLAGS_vmlinux := -X
12OBJCOPYFLAGS := -O binary -R .note -R .comment -S 12OBJCOPYFLAGS := -O binary -R .note -R .comment -S
13GZFLAGS := -9 13GZFLAGS := -9
14 14
15CFLAGS += $(call cc-option,-mno-fdpic)
16AFLAGS += $(call cc-option,-mno-fdpic)
15CFLAGS_MODULE += -mlong-calls 17CFLAGS_MODULE += -mlong-calls
16KALLSYMS += --symbol-prefix=_ 18KALLSYMS += --symbol-prefix=_
17 19