diff options
author | Emil Velikov <[email protected]> | 2014-04-01 02:51:20 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-04-05 13:02:30 +0100 |
commit | 432b5776f2e60ae5e040f142bfbbc1fdfdeefc50 (patch) | |
tree | 64c2147a08544788ad4e29c520b5104cb7e6e910 /src/gallium | |
parent | 28a42764423c86656a6fe77917c7044d29adf600 (diff) |
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 <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/targets/r600/omx/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
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) |