mesa, mesa18: default to ~llvm (#29360)

This commit is contained in:
Valentin Volkl 2022-03-07 15:59:20 +01:00 committed by GitHub
parent 6934703ffb
commit e3ab326228
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ class Mesa(MesonPackage):
depends_on('zlib@1.2.3:')
# Internal options
variant('llvm', default=True, description="Enable LLVM.")
variant('llvm', default=False, description="Enable LLVM.")
_SWR_AUTO_VALUE = 'auto'
_SWR_ENABLED_VALUES = (_SWR_AUTO_VALUE, 'avx', 'avx2', 'knl', 'skx')
_SWR_DISABLED_VALUES = ('none',)

View file

@ -41,7 +41,7 @@ class Mesa18(AutotoolsPackage):
depends_on('ncurses+termlib')
# Internal options
variant('llvm', default=True, description="Enable LLVM.")
variant('llvm', default=False, description="Enable LLVM.")
_SWR_ENABLED_VALUES = ('avx', 'avx2', 'knl', 'skx')
variant('swr', values=any_combination_of(*_SWR_ENABLED_VALUES),
description="Enable the SWR driver.")