We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebc7c0 commit 2b6d228Copy full SHA for 2b6d228
1 file changed
src/SPC/builder/unix/library/libaom.php
@@ -21,7 +21,7 @@ protected function build(): void
21
}
22
$targetCpu = SPCTarget::getTargetArch();
23
if (str_starts_with($targetCpu, 'aarch')) {
24
- $targetCpu = str_replace($targetCpu, 'aarch', 'arm');
+ $targetCpu = str_replace('aarch', 'arm', $targetCpu);
25
26
if (!SystemUtil::findCommand('nasm') && !SystemUtil::findCommand('yasm')) {
27
$targetCpu = 'generic';
0 commit comments