Skip to content

Commit

Permalink
Merge pull request #190 from ugexe/patch-1
Browse files Browse the repository at this point in the history
better armv6 and v7 detection
  • Loading branch information
FROGGS committed Mar 17, 2015
2 parents a623b72 + f2937f5 commit 51b90f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/probe.pm
Expand Up @@ -237,7 +237,7 @@ sub unaligned_access {
if ($arch =~ /^(?:x86_64|amd64|i[0-9]86)$/) {
# Don't know alignment constraints for ARMv8
_gen_unaligned_access($config, 'all');
} elsif ($arch =~ /^armv(?:6|7)/) {
} elsif ($arch =~ /armv(?:6|7)/) {
_gen_unaligned_access($config, 'int32');
} else {
# ARMv5 and earlier do "interesting" things on unaligned 32 bit
Expand Down

0 comments on commit 51b90f0

Please sign in to comment.