From 36237c651fab7aa9e65da9c33eb89a619827edff Mon Sep 17 00:00:00 2001 From: marha Date: Tue, 19 Jun 2012 08:51:12 +0200 Subject: mesa git update 19 Juni 2012 --- mesalib/scons/gallium.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mesalib/scons/gallium.py') diff --git a/mesalib/scons/gallium.py b/mesalib/scons/gallium.py index ee91ca444..75c713d1c 100644 --- a/mesalib/scons/gallium.py +++ b/mesalib/scons/gallium.py @@ -139,6 +139,7 @@ def generate(env): env['gcc'] = 'gcc' in os.path.basename(env['CC']).split('-') env['msvc'] = env['CC'] == 'cl' + env['suncc'] = env['platform'] == 'sunos' and os.path.basename(env['CC']) == 'cc' if env['msvc'] and env['toolchain'] == 'default' and env['machine'] == 'x86_64': # MSVC x64 support is broken in earlier versions of scons @@ -151,6 +152,7 @@ def generate(env): ppc = env['machine'] == 'ppc' gcc = env['gcc'] msvc = env['msvc'] + suncc = env['suncc'] # Determine whether we are cross compiling; in particular, whether we need # to compile code generators with a different compiler as the target code. -- cgit v1.2.3