Index: source/libvpx/build/make/rtcd.pl |
=================================================================== |
--- source/libvpx/build/make/rtcd.pl (revision 291087) |
+++ source/libvpx/build/make/rtcd.pl (working copy) |
@@ -365,13 +365,13 @@ |
@REQUIRES = filter(keys %required ? keys %required : qw/mmx sse sse2/); |
&require(@REQUIRES); |
x86; |
-} elsif ($opts{arch} eq 'mips32') { |
- @ALL_ARCHS = filter(qw/mips32/); |
+} elsif ($opts{arch} eq 'mips32' || $opts{arch} eq 'mips64') { |
+ @ALL_ARCHS = filter("$opts{arch}"); |
open CONFIG_FILE, $opts{config} or |
die "Error opening config file '$opts{config}': $!\n"; |
while (<CONFIG_FILE>) { |
if (/HAVE_DSPR2=yes/) { |
- @ALL_ARCHS = filter(qw/mips32 dspr2/); |
+ @ALL_ARCHS = filter("$opts{arch}", qw/dspr2/); |
last; |
} |
} |