ref: 7fde349b25479bcd54f0363e3e5539e8e8b9a7e9
parent: fc83fcb7c405ec9369c9f6ea2c83339d74fa034e
author: James Zern <[email protected]>
date: Wed Mar 29 18:51:22 EDT 2017
rtcd,unit tests: fix ppc64 build match ppc* in rtcd to ensure vsx is included Change-Id: I331a5d35e7160eeb69ebd14b98ba03ec5be6c600
--- a/build/make/rtcd.pl
+++ b/build/make/rtcd.pl
@@ -420,7 +420,7 @@
} elsif ($opts{arch} eq 'armv8' || $opts{arch} eq 'arm64' ) {
@ALL_ARCHS = filter(qw/neon/);
arm;
-} elsif ($opts{arch} eq 'ppc' ) {
+} elsif ($opts{arch} =~ /^ppc/ ) {
@ALL_ARCHS = filter(qw/vsx/);
ppc;
} else {