summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-08-18 18:04:44 +0100
committerJosé Fonseca <jfonseca@vmware.com>2011-08-18 18:04:44 +0100
commit762bf931ca25a6aea62c1344ea2360496479f781 (patch)
tree095110c90fe587160ef5a8c478823282188c94da
parenta7f67b1c50d5d835c371d9aeaeca681fbd354ef8 (diff)
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.
-rw-r--r--src/gallium/drivers/llvmpipe/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/SConscript b/src/gallium/drivers/llvmpipe/SConscript
index 2b232a524a..129de29782 100644
--- a/src/gallium/drivers/llvmpipe/SConscript
+++ b/src/gallium/drivers/llvmpipe/SConscript
@@ -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: