scons: Force C++ linkage.
authorJosé Fonseca <jrfonseca@tungstengraphics.com>
Tue, 4 Mar 2008 11:40:18 +0000 (12:40 +0100)
committerJosé Fonseca <jrfonseca@tungstengraphics.com>
Tue, 4 Mar 2008 11:40:18 +0000 (12:40 +0100)
We have some C++ code (LLVM), which must be linked with g++ on certain
platforms. SCons tries to guess when to use g++ by looking to the source files,
but this fails, if the C++ code is not list in the command line, but inside in
the library.

SConstruct

index 6f95d123ff26f11f88270ebc01d4dfc58adb618b..dd118dfbb870b6c1a74694a3fb79ef64557707a7 100644 (file)
@@ -206,7 +206,10 @@ if llvm:
        env.ParseConfig('llvm-config --cflags --ldflags --libs')
        env.Append(CPPDEFINES = ['MESA_LLVM'])
        env.Append(CXXFLAGS = ['-Wno-long-long'])
-       
+
+# Force C++ linkage
+if env['PLATFORM'] in ('posix',):
+       env['LINK'] = env['CXX']
 
 # libGL
 if platform not in ('winddk',):