Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: compatibility with Ubuntu 22 LTS #681

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions rtlib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
set(DiscoPoP_SOURCES
runtimeFunctions.cpp
runtimeFunctionsGlobals.cpp

memory/MemoryManager.cpp
memory/Signature.cpp

Expand All @@ -24,7 +24,7 @@ set(DiscoPoP_SOURCES
calltree/DependencyMetadata.cpp
calltree/MetaDataQueueElement.cpp
calltree/utils.cpp

injected_functions/dp_add_bb_deps.cpp
injected_functions/dp_alloca.cpp
injected_functions/dp_call.cpp
Expand All @@ -47,7 +47,7 @@ set(DiscoPoP_SOURCES
)

set(CMAKE_CXX_FLAGS
"-O2 -std=c++17 -pthread -fno-rtti -fPIE -fPIC -ffreestanding")
"-O2 -std=c++17 -pthread -fno-rtti -fPIE -fPIC")

# add_custom_target(DiscoPoP)

Expand Down Expand Up @@ -119,4 +119,4 @@ install(TARGETS DiscoPoP_RT ARCHIVE DESTINATION lib)
# compile simple-alias-detection
#exec_program(${CMAKE_CURRENT_SOURCE_DIR}/simple-alias-detection/compile.sh
# ARGS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}
#)
#)
Loading