blob: f1caea9bd663e964c7e6dbf9bbbc9dd1656f7390 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- meson.build.orig 2025-07-24 01:31:52 UTC
+++ meson.build
@@ -324,7 +324,7 @@ programmer = {
},
'internal' : {
'systems' : systems_hwaccess + ['linux'],
- 'cpu_families' : (host_machine.system() == 'linux' ? [host_machine.cpu_family()] : ['x86', 'x86_64']),
+ 'cpu_families' : (host_machine.system() in ['linux', 'freebsd'] ? [host_machine.cpu_family()] : ['x86', 'x86_64']),
'deps' : [ libpci ],
'groups' : [ group_internal ],
'srcs' : (host_machine.cpu_family() in ['x86', 'x86_64'] ? files(
|