Skip to content

Commit 62cd358

Browse files
devgianlugmta
authored andcommittedFeb 17, 2025
Meta: Link with OpenSSL explicitly
Explicitly link final targets with OpenSSL to ensure that the vcpkg version is loaded instead of the system one. Before this change we would inherit `libcrypto.so` and `libssl.so` from other dependencies, like Qt, that do not have their RPATH rewritten. This would cause the loader to prefer the system libraries over the vcpkg ones causing all sorts of version mismatch issues. The effectiveness of this change can be verified with `readelf -d ./bin/Ladybird` showing `libcrypto.so` and `libssl.so` as direct dependencies, before they would not appear. Additionally, `ldd` will show `libcrypto.so` and `libssl.so` pointing to the vcpkg builds.
1 parent 41c6f93 commit 62cd358

File tree

6 files changed

+8
-0
lines changed

6 files changed

+8
-0
lines changed
 

‎CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ if (ENABLE_QT AND ENABLE_GUI_TARGETS)
8282
find_package(Qt6 REQUIRED COMPONENTS Core Widgets Network)
8383
endif()
8484

85+
# We need to find OpenSSL in order to link it explicitly with all targets.
86+
find_package(OpenSSL REQUIRED)
87+
8588
include(CTest) # for BUILD_TESTING option, default ON
8689

8790
if (ENABLE_GUI_TARGETS)

‎Services/RequestServer/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ target_include_directories(requestserverservice PRIVATE ${LADYBIRD_SOURCE_DIR}/S
2626

2727
target_link_libraries(RequestServer PRIVATE requestserverservice)
2828
target_link_libraries(requestserverservice PUBLIC LibCore LibDNS LibMain LibCrypto LibFileSystem LibIPC LibMain LibTLS LibWebView LibWebSocket LibURL LibTextCodec LibThreading CURL::libcurl)
29+
target_link_libraries(requestserverservice PRIVATE OpenSSL::Crypto OpenSSL::SSL)
2930

3031
if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
3132
# Solaris has socket and networking related functions in two extra libraries

‎Services/WebContent/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ target_include_directories(webcontentservice PUBLIC $<BUILD_INTERFACE:${LADYBIRD
2929
target_include_directories(webcontentservice PUBLIC $<BUILD_INTERFACE:${LADYBIRD_SOURCE_DIR}/Services/>)
3030

3131
target_link_libraries(webcontentservice PUBLIC LibCore LibFileSystem LibGfx LibIPC LibJS LibMain LibMedia LibWeb LibWebSocket LibRequests LibWebView LibImageDecoderClient LibGC)
32+
target_link_libraries(webcontentservice PRIVATE OpenSSL::Crypto OpenSSL::SSL)
3233

3334
if (ENABLE_QT)
3435
qt_add_executable(WebContent main.cpp)

‎Services/WebDriver/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ target_include_directories(WebDriver PRIVATE ${LADYBIRD_SOURCE_DIR})
1313
target_include_directories(WebDriver PRIVATE ${LADYBIRD_SOURCE_DIR}/Services)
1414

1515
target_link_libraries(WebDriver PRIVATE LibCore LibFileSystem LibGfx LibIPC LibJS LibMain LibWeb LibWebSocket LibWebView)
16+
target_link_libraries(WebDriver PRIVATE OpenSSL::Crypto OpenSSL::SSL)

‎Services/WebWorker/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ target_include_directories(webworkerservice PRIVATE ${LADYBIRD_SOURCE_DIR})
1414
target_include_directories(webworkerservice PRIVATE ${LADYBIRD_SOURCE_DIR}/Services/)
1515

1616
target_link_libraries(webworkerservice PUBLIC LibCore LibFileSystem LibGfx LibIPC LibJS LibRequests LibWeb LibWebView LibUnicode LibImageDecoderClient LibMain LibURL LibGC)
17+
target_link_libraries(webworkerservice PRIVATE OpenSSL::Crypto OpenSSL::SSL)
1718

1819
if (ENABLE_QT)
1920
qt_add_executable(WebWorker main.cpp)

‎UI/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ endif()
7070

7171
set(LADYBIRD_LIBS AK LibCore LibFileSystem LibGfx LibImageDecoderClient LibIPC LibJS LibMain LibWeb LibWebView LibRequests LibURL)
7272
target_link_libraries(${LADYBIRD_TARGET} PRIVATE ${LADYBIRD_LIBS})
73+
target_link_libraries(${LADYBIRD_TARGET} PRIVATE OpenSSL::Crypto OpenSSL::SSL)
7374

7475
target_include_directories(${LADYBIRD_TARGET} ${CMAKE_CURRENT_BINARY_DIR})
7576
target_include_directories(${LADYBIRD_TARGET} ${LADYBIRD_SOURCE_DIR})

0 commit comments

Comments
 (0)
Please sign in to comment.