blob: cef6c1d7d0541c27424daacf8cc80ba8d7e0b934 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- meson.build.orig 2023-04-27 13:51:02 UTC
+++ meson.build
@@ -234,7 +234,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(
|