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 cfdc0e7 commit 4004334Copy full SHA for 4004334
Changes
@@ -1,6 +1,7 @@
1
Revision history for {{$dist->name}}
2
3
{{$NEXT}}
4
+ - CPU detection with archname arm64- prefix (gh#411, gh#412)
5
6
2.81_01 2023-06-24 09:54:28 -0600
7
- Added support for xz compression with
lib/Alien/Build/Plugin/Core/Setup.pm
@@ -243,6 +243,7 @@ sub _cpu_arch {
243
}
244
} elsif( $Config{archname} =~ /
245
\b aarch64 \b
246
+ | \b arm64 \b # arm64-freebsd (FreeBSD can have either aarch64 or arm64)
247
/ix ) {
248
$arch = { name => 'aarch64' }; # ARM64
249
} elsif( $Config{archname} =~ m/
0 commit comments