Skip to content
Snippets Groups Projects
Commit 443ff602 authored by Chia-I Wu's avatar Chia-I Wu
Browse files

targets/egl-static: fix a linking error

rbug is always linked in and it needs libpthread.
(cherry picked from commit 5fe5d236)
parent a20a9508
No related branches found
No related tags found
Loading
...@@ -42,7 +42,7 @@ egl_CPPFLAGS += \ ...@@ -42,7 +42,7 @@ egl_CPPFLAGS += \
-I$(TOP)/src/egl/main \ -I$(TOP)/src/egl/main \
-D_EGL_MAIN=_eglMain -D_EGL_MAIN=_eglMain
egl_LIBS += $(TOP)/src/gallium/state_trackers/egl/libegl.a egl_LIBS += $(TOP)/src/gallium/state_trackers/egl/libegl.a
egl_SYS += $(LIBUDEV_LIBS) $(DLOPEN_LIBS) -lEGL -lm egl_SYS += $(LIBUDEV_LIBS) $(DLOPEN_LIBS) -lEGL -lm -lpthread
# EGL platforms # EGL platforms
ifneq ($(findstring x11, $(EGL_PLATFORMS)),) ifneq ($(findstring x11, $(EGL_PLATFORMS)),)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment