mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 19:58:09 +02:00
llvmpipe: Don't build lp_test_round when using MSVC.
lp_test_round uses the math functions round and trunc, which aren't available with MSVC. Fixes the MSVC build for now.
This commit is contained in:
parent
2e423ac074
commit
c89ea8f213
1 changed files with 3 additions and 1 deletions
|
|
@ -80,10 +80,12 @@ if env['platform'] != 'embedded':
|
|||
'blend',
|
||||
'conv',
|
||||
'printf',
|
||||
'round',
|
||||
'sincos',
|
||||
]
|
||||
|
||||
if not msvc:
|
||||
tests.append('round')
|
||||
|
||||
for test in tests:
|
||||
target = env.Program(
|
||||
target = 'lp_test_' + test,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue