Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .github/workflows/oracle8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- dependabot/*
- release/*
- copilot/*
- fix/remove-ld-group
schedule:
- cron: '21 2 * * *'
workflow_call:
Expand Down
10 changes: 0 additions & 10 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,6 @@ if (WIN32)
endif (MSVC)
endif (WIN32)

# GNU ld is single-pass for static libraries: circular dependencies between
# libraries (e.g. antares-solver-simulation <-> model_antares) cause unresolved
# symbols. --start-group/--end-group tells ld to re-scan until all are resolved.
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
add_link_options("LINKER:--start-group")
endif ()

#
# Beta
#
Expand Down Expand Up @@ -397,6 +390,3 @@ include(CPack)

#Last. We need all target defined
add_subdirectory("src/packaging")
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
add_link_options("LINKER:--end-group")
endif()
Loading