From 79992ca7e088ccd59f777c06a1e68a52f2620176 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Sat, 26 Jun 2010 14:16:19 +0000 Subject: [PATCH] Make OpenCL builds "not" the default for linux and OSX. If OSX wants OpenCL to be part of the default build you can change this specifically for your platform. At this point there is no standard OpenCL library for linux. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5800 8ced0084-cf51-0410-be5f-012b33b47a6e --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 6ff215bb22..a26388d407 100644 --- a/SConstruct +++ b/SConstruct @@ -100,7 +100,7 @@ vars.AddVariables( BoolVariable('lint', 'Set for lint build (extra warnings)', False), BoolVariable('nowx', 'Set for building with no WX libs', False), BoolVariable('wxgl', 'Set for building with WX GL on Linux', False), - BoolVariable('opencl', 'Build with OpenCL', True), + BoolVariable('opencl', 'Build with OpenCL', False), BoolVariable('nojit', 'Remove entire jit cores', False), BoolVariable('shared_glew', 'Use system shared libGLEW', True), BoolVariable('shared_lzo', 'Use system shared liblzo2', True),