llvmpipe: Don't build lp_test_arit on MSVC.

Several issues due to expf/logf/etc either not being declared,
or being defined as a macro.
This commit is contained in:
José Fonseca 2011-08-18 18:04:44 +01:00
parent a7f67b1c50
commit 762bf931ca

View file

@ -85,7 +85,6 @@ if not env['embedded']:
env.Prepend(LIBS = [llvmpipe] + gallium)
tests = [
'arit',
'format',
'blend',
'conv',
@ -94,6 +93,7 @@ if not env['embedded']:
]
if not env['msvc']:
tests.append('arit')
tests.append('round')
for test in tests: