drivers/nouveau: mention dummy.cpp to use g++ linker
authorEmil Velikov <emil.l.velikov@gmail.com>
Tue, 1 Apr 2014 01:49:58 +0000 (02:49 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Sat, 5 Apr 2014 12:00:32 +0000 (13:00 +0100)
The build system does not know that the static library is C++.
Mention the cpp file to trigger generation of the proper variable
and drop the hacky stdc++ linking.

Cc: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/gallium/drivers/nouveau/Makefile.am

index 27f829f2da3072cbaefd8dfe605467fc51d5e92e..ef48380ac6a06c4ee02617048c50bb809104972e 100644 (file)
@@ -42,11 +42,11 @@ libnouveau_la_SOURCES = \
 
 noinst_PROGRAMS = nouveau_compiler
 
+nodist_EXTRA_nouveau_compiler_SOURCES = dummy.cpp
 nouveau_compiler_SOURCES = \
        nouveau_compiler.c
 
 nouveau_compiler_LDADD = \
        libnouveau.la \
        ../../auxiliary/libgallium.la \
-       -lstdc++ \
        $(GALLIUM_COMMON_LIB_DEPS)