mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
a0eb0a275d
This broke with recent changes to library loading and mapping order.
28 lines
903 B
CMake
28 lines
903 B
CMake
set(CMAKE_SKIP_RPATH FALSE)
|
|
macro(add_dlopen_lib NAME FUNCTION)
|
|
add_library(${NAME} SHARED Dynlib.cpp)
|
|
target_compile_definitions(${NAME} PRIVATE -DFUNCTION=${FUNCTION})
|
|
# LibLine is not special, just an "external" dependency
|
|
target_link_libraries(${NAME} LibLine)
|
|
# Avoid execution by the test runner
|
|
install(TARGETS ${NAME}
|
|
DESTINATION usr/Tests/LibELF
|
|
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ OWNER_WRITE GROUP_WRITE)
|
|
endmacro()
|
|
add_dlopen_lib(DynlibA dynliba_function)
|
|
add_dlopen_lib(DynlibB dynlibb_function)
|
|
|
|
add_dlopen_lib(DynlibC dynlibc_function)
|
|
set(CMAKE_INSTALL_RPATH $ORIGIN)
|
|
add_dlopen_lib(DynlibD dynlibd_function)
|
|
target_link_libraries(DynlibD DynlibC)
|
|
unset(CMAKE_INSTALL_RPATH)
|
|
|
|
set(TEST_SOURCES
|
|
test-elf.cpp
|
|
TestDlOpen.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibELF LIBS LibDl)
|
|
endforeach()
|