From: Emil Velikov Date: Tue, 1 Apr 2014 01:51:20 +0000 (+0100) Subject: r600/omx: drop -lstdc++ hack X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=432b5776f2e60ae5e040f142bfbbc1fdfdeefc50;p=mesa.git r600/omx: drop -lstdc++ hack 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 --- diff --git a/src/gallium/targets/r600/omx/Makefile.am b/src/gallium/targets/r600/omx/Makefile.am index aecbb83a8be..2168db895ea 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)