Skip to content

Commit

Permalink
Merge pull request #5693 from adrianschroeter/backend
Browse files Browse the repository at this point in the history
[backend] check on hostarch for arm specific 32bit support
  • Loading branch information
adrianschroeter committed Aug 22, 2018
2 parents fc312c6 + c463610 commit cd8a29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_worker
Expand Up @@ -772,7 +772,7 @@ if (open(FILE, "<", "/proc/cpuinfo")) {
close FILE;

# Check for aarch64/aarch32 compatibility
if ($hw->{'arch'} eq 'aarch64' && $cpu_implementer) {
if ($hostarch eq 'aarch64' && $cpu_implementer) {
my $supports_aarch32;

if ($cpu_implementer eq "0x50") {
Expand Down

0 comments on commit cd8a29d

Please sign in to comment.