diff options
author | John Crispin <john@openwrt.org> | 2013-05-06 16:45:51 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-05-06 16:45:51 +0000 |
commit | c2c1f9ae73e80cab4be4cf23f92ba521bbb843f9 (patch) | |
tree | b0c9e53aea49a90d012b5a9bb9b038951bd0a4af | |
parent | 849ff98669cbbcfc0236fd3b0a302325d81ed527 (diff) | |
download | upstream-c2c1f9ae73e80cab4be4cf23f92ba521bbb843f9.tar.gz upstream-c2c1f9ae73e80cab4be4cf23f92ba521bbb843f9.tar.bz2 upstream-c2c1f9ae73e80cab4be4cf23f92ba521bbb843f9.zip |
rules.mk: add _dsp to ARCH_SUFFIX if the dsp ase is used
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 36566
-rw-r--r-- | rules.mk | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -63,6 +63,12 @@ endif ifneq ($(filter -mips%r2,$(TARGET_OPTIMIZATION)),) ARCH_SUFFIX:=_r2 endif +ifneq ($(filter -mdsp,$(TARGET_OPTIMIZATION)),) + ARCH_SUFFIX:=$(ARCH_SUFFIX)_dsp +endif +ifneq ($(filter -mdspr2,$(TARGET_OPTIMIZATION)),) + ARCH_SUFFIX:=$(ARCH_SUFFIX)_dspr2 +endif ifdef CONFIG_USE_MIPS16 TARGET_OPTIMIZATION+= -minterlink-mips16 -mips16 endif |