From 432b5776f2e60ae5e040f142bfbbc1fdfdeefc50 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 1 Apr 2014 02:51:20 +0100 Subject: [PATCH] r600/omx: drop -lstdc++ hack MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The build system will use g++ to link the static library due to the dummy.cpp source(s). Thus one does not need the explicit link against stdc++. Cc: Christian König Signed-off-by: Emil Velikov --- src/gallium/targets/r600/omx/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/targets/r600/omx/Makefile.am b/src/gallium/targets/r600/omx/Makefile.am index aecbb83..2168db8 100644 --- a/src/gallium/targets/r600/omx/Makefile.am +++ b/src/gallium/targets/r600/omx/Makefile.am @@ -48,5 +48,4 @@ libomx_r600_la_LIBADD = \ $(top_builddir)/src/gallium/winsys/radeon/drm/libradeonwinsys.la \ $(GALLIUM_OMX_LIB_DEPS) \ $(LIBDRM_LIBS) \ - $(RADEON_LIBS) \ - -lstdc++ + $(RADEON_LIBS) -- 2.7.4