Changeset 278768 in webkit
- Timestamp:
- Jun 11, 2021, 11:08:32 AM (5 years ago)
- Location:
- trunk/Source/ThirdParty/ANGLE
- Files:
-
- 2 edited
-
CMakeLists.txt (modified) (2 diffs)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/ThirdParty/ANGLE/CMakeLists.txt
r278726 r278768 152 152 LIBGLESV2_IMPLEMENTATION 153 153 ) 154 target_link_libraries(GLESv2 PRIVATE ${ANGLEGLESv2_LIBRARIES}) 154 155 target_link_libraries(GLESv2 PRIVATE ${ANGLEGLESv2_LIBRARIES} ${CMAKE_DL_LIBS}) 156 155 157 if (WIN32) 156 158 # Output library name according to the .def … … 175 177 EGLAPI= 176 178 ) 177 target_link_libraries(EGL PRIVATE GLESv2) 179 180 target_link_libraries(EGL PRIVATE GLESv2 ${CMAKE_DL_LIBS}) 181 178 182 set_target_properties(EGL PROPERTIES LINKER_LANGUAGE CXX) 179 183 if (WIN32) -
trunk/Source/ThirdParty/ANGLE/ChangeLog
r278726 r278768 1 2021-06-11 Eleni Maria Stea <estea@igalia.com> 2 3 ANGLE EGL and GLES libraries should link with lib dl. 4 https://bugs.webkit.org/show_bug.cgi?id=226920 5 6 Reviewed by Kenneth Russell. 7 8 GLES and EGL that are generated from ANGLE should link 9 with libdl because they use dlsym and dlopen. Also, 10 with the updated CMakeLists.txt we can safely link with libEGL 11 when USE_ANGLE_WEBGL is set because the symbols of EGL are now 12 found. 13 14 * CMakeLists.txt: 15 1 16 2021-06-10 Don Olmstead <don.olmstead@sony.com> 2 17
Note:
See TracChangeset
for help on using the changeset viewer.