diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-10-03 02:16:27 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-10-03 02:16:27 +0000 |
commit | a0eb2d89c5ef8029c1e5abde58eb18ed2d0e50b6 (patch) | |
tree | d6529fd2775228812e8caaeee4b8eda153fa007e /target/linux/package/alsa/Makefile | |
parent | f9ff8eeecb42d53ef2247f5f9e5f8c2fbe6a5e24 (diff) | |
download | upstream-a0eb2d89c5ef8029c1e5abde58eb18ed2d0e50b6.tar.gz upstream-a0eb2d89c5ef8029c1e5abde58eb18ed2d0e50b6.tar.bz2 upstream-a0eb2d89c5ef8029c1e5abde58eb18ed2d0e50b6.zip |
fix build when arch != mipsel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2038 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package/alsa/Makefile')
-rw-r--r-- | target/linux/package/alsa/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/package/alsa/Makefile b/target/linux/package/alsa/Makefile index 16b9aed29f..c2742cccde 100644 --- a/target/linux/package/alsa/Makefile +++ b/target/linux/package/alsa/Makefile @@ -20,6 +20,13 @@ endif include $(TOPDIR)/package/rules.mk +ifeq ($(LINUX_KARCH),i386) +KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time +endif +ifeq ($(LINUX_KARCH),mips) +KERNEL_C_OPTS:= -Os -G 0 -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap +endif + $(eval $(call PKG_template,KMOD_ALSA,kmod-alsa,$(LINUX_VERSION)$(BOARD)+$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH),kernel-$(LINUX_VERSION)-$(BOARD) ($(KERNEL_RELEASE)))) $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared @@ -35,7 +42,8 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared touch $@ $(PKG_BUILD_DIR)/.built: - $(MAKE) -C $(PKG_BUILD_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + c_opts="$(KERNEL_C_OPTS)" touch $@ $(IPKG_KMOD_ALSA): |