From 11b15c4d254ee689183306579d9c4851e29c3c4a Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Sun, 30 Jan 2011 11:17:07 +0000 Subject: scons: We have C++ in several libraries, so always link with the C++ compiler Prevents missing symbols in libGL.so when LLVM is disabled. --- scons/gallium.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scons/gallium.py') diff --git a/scons/gallium.py b/scons/gallium.py index 75e9b9e7fc..df060f01a3 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -551,6 +551,10 @@ def generate(env): env.Append(LINKFLAGS = linkflags) env.Append(SHLINKFLAGS = shlinkflags) + # We have C++ in several libraries, so always link with the C++ compiler + if env['gcc']: + env['LINK'] = env['CXX'] + # Default libs env.Append(LIBS = []) -- cgit v1.2.3