File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,19 @@ jobs:
11
11
architecture : [ arm64, x86-64 ]
12
12
include :
13
13
- operating_system : freebsd
14
- version : ' 14.0 '
15
- pkginstall : sudo pkg install -y cmake git ninja pkgconf
14
+ version : ' 14.2 '
15
+ pkginstall : sudo pkg update && sudo pkg install -y cmake git ninja pkgconf
16
16
- operating_system : netbsd
17
- version : ' 10.0 '
18
- pkginstall : sudo pkgin update && sudo pkgin -y install cmake gcc12 git ninja-build pkgconf && export PATH=/usr/pkg/gcc12/bin:$PATH
17
+ version : ' 10.1 '
18
+ pkginstall : sudo pkgin update && sudo pkgin -y install clang cmake git ninja-build pkgconf
19
19
- operating_system : openbsd
20
- version : ' 7.5 '
21
- pkginstall : sudo pkg_add cmake git ninja pkgconf
20
+ version : ' 7.7 '
21
+ pkginstall : sudo pkg_add -u && sudo pkg_add cmake git ninja pkgconf
22
22
23
23
steps :
24
24
- uses : actions/checkout@v4
25
25
26
- - uses : cross-platform-actions/action@v0.24 .0
26
+ - uses : cross-platform-actions/action@v0.28 .0
27
27
with :
28
28
operating_system : ${{ matrix.operating_system }}
29
29
architecture : ${{ matrix.architecture }}
Original file line number Diff line number Diff line change @@ -799,7 +799,11 @@ BoolInt CPU_IsSupported_AES (void) { return APPLE_CRYPTO_SUPPORT_VAL; }
799
799
800
800
#ifdef USE_HWCAP
801
801
802
- #if defined(__FreeBSD__ )
802
+ #if defined(__FreeBSD__ ) || defined(__OpenBSD__ )
803
+ #include <sys/param.h>
804
+ #endif
805
+
806
+ #if (defined(__FreeBSD__ ) && __FreeBSD_version >= 1200000 ) || (defined(__OpenBSD__ ) && OpenBSD >= 202409 )
803
807
static unsigned long MY_getauxval (int aux )
804
808
{
805
809
unsigned long val ;
You can’t perform that action at this time.
0 commit comments