| Index: source/libvpx/build/make/rtcd.pl
|
| ===================================================================
|
| --- source/libvpx/build/make/rtcd.pl (revision 290053)
|
| +++ source/libvpx/build/make/rtcd.pl (working copy)
|
| @@ -3,7 +3,7 @@
|
| no strict 'refs';
|
| use warnings;
|
| use Getopt::Long;
|
| -Getopt::Long::Configure("auto_help");
|
| +Getopt::Long::Configure("auto_help") if $Getopt::Long::VERSION > 2.32;
|
|
|
| my %ALL_FUNCS = ();
|
| my @ALL_ARCHS;
|
| @@ -385,6 +385,8 @@
|
| arm;
|
| } elsif ($opts{arch} eq 'armv7') {
|
| @ALL_ARCHS = filter(qw/edsp media neon_asm neon/);
|
| + @REQUIRES = filter(keys %required ? keys %required : qw/media/);
|
| + &require(@REQUIRES);
|
| arm;
|
| } elsif ($opts{arch} eq 'armv8') {
|
| @ALL_ARCHS = filter(qw/neon/);
|
|
|