Build fix for MIPS32R6.

Exclude MIPS optimizations for MIPS32R6 build since some of the instructions
are not supported. This is temporary fix, until the MIPS32R6 code is added.

R=andrew@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/25989004

Patch from Ljubomir Papuga <lpapuga@mips.com>.

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7580 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2014-10-31 16:26:17 +00:00
parent cc476aa038
commit 508c91683c
4 changed files with 5 additions and 5 deletions

View File

@ -272,7 +272,7 @@
}], }],
], ],
}], }],
['target_arch=="mipsel"', { ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
'defines': [ 'defines': [
'MIPS32_LE', 'MIPS32_LE',
], ],

View File

@ -140,7 +140,7 @@
}], }],
], # conditions ], # conditions
}], }],
['target_arch=="mipsel"', { ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
'sources': [ 'sources': [
'signal_processing/include/spl_inl_mips.h', 'signal_processing/include/spl_inl_mips.h',
'signal_processing/complex_bit_reverse_mips.c', 'signal_processing/complex_bit_reverse_mips.c',

View File

@ -87,7 +87,7 @@
'pitch_filter_c.c', 'pitch_filter_c.c',
], ],
}], }],
['target_arch=="mipsel"', { ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
'sources': [ 'sources': [
'entropy_coding_mips.c', 'entropy_coding_mips.c',
'filters_mips.c', 'filters_mips.c',

View File

@ -112,7 +112,7 @@
'ns/nsx_defines.h', 'ns/nsx_defines.h',
], ],
'conditions': [ 'conditions': [
['target_arch=="mipsel"', { ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
'sources': [ 'sources': [
'ns/nsx_core_mips.c', 'ns/nsx_core_mips.c',
], ],
@ -139,7 +139,7 @@
['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', { ['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', {
'dependencies': ['audio_processing_neon',], 'dependencies': ['audio_processing_neon',],
}], }],
['target_arch=="mipsel"', { ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
'sources': [ 'sources': [
'aecm/aecm_core_mips.c', 'aecm/aecm_core_mips.c',
], ],