diff options
author | Mike Frysinger <michael.frysinger@analog.com> | 2007-10-21 22:55:18 +0800 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-10-21 22:55:18 +0800 |
commit | 1c668d82465cd5c17030c0f69561841374380ac8 (patch) | |
tree | ae50c964e2b7860f4c53d70dd2853d440a9ddb20 /arch/blackfin/Makefile | |
parent | 066954a3891d32198edad3b319792d8db6a6a575 (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/blackfin/Makefile')
-rw-r--r-- | arch/blackfin/Makefile | 2 |
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 OBJCOPYFLAGS := -O binary -R .note -R .comment -S GZFLAGS := -9 +CFLAGS += $(call cc-option,-mno-fdpic) +AFLAGS += $(call cc-option,-mno-fdpic) CFLAGS_MODULE += -mlong-calls KALLSYMS += --symbol-prefix=_ |