@@ -71,6 +71,7 @@ config.set10('HAVE_LIB_ATOMIC_OPS', lib_atomics)
foreach d : [
['intel', true, host_machine.cpu_family().startswith('x86')],
+ ['radeon', true, true],
]
driver = d[0]
require_atomics = d[1]
@@ -91,17 +92,6 @@ foreach d : [
endif
endforeach
-with_radeon = false
-_radeon = get_option('radeon')
-if _radeon == 'auto'
- with_radeon = with_atomics
-else
- with_radeon = _radeon == 'true'
-endif
-if with_radeon and not with_atomics
- error('libdrm_radeon requires atomics.')
-endif
-
with_amdgpu = false
_amdgpu = get_option('amdgpu')
if _amdgpu == 'auto'
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> --- meson.build | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-)