diff options
author | Vinson Lee <vlee@vmware.com> | 2010-08-19 18:09:24 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-08-19 18:09:24 -0700 |
commit | 9b7480cd95c2d1259e23bfb5549cefaa94ebaca1 (patch) | |
tree | 0f7d37835688b6b17ee70722c6e50198dd0059fb /configs | |
parent | 48dca27e33b333ee7ed16287a348db16eef02ac1 (diff) |
configs: Add -lstdc++ to default.
This fixes the following error when trying to run glxinfo or glxgears
with swrast.
undefined symbol: __cxa_pure_virtual
Diffstat (limited to 'configs')
-rw-r--r-- | configs/default | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/default b/configs/default index 4f6334b43b..cdfa811b10 100644 --- a/configs/default +++ b/configs/default @@ -116,7 +116,7 @@ EGL_CLIENT_APIS = $(GL_LIB) # Library dependencies #EXTRA_LIB_PATH ?= -GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread -ltalloc +GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread -ltalloc -lstdc++ EGL_LIB_DEPS = $(EXTRA_LIB_PATH) -ldl -lpthread OSMESA_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) GLU_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm |