-
Notifications
You must be signed in to change notification settings - Fork 12
maintenance/specify opt debug flags #407
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
Closed
Closed
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
b0bc4cb
Add symbol visibility armoring to all shared libraries (de novo on main)
Copilot 826d5af
Apply ruff fixes
github-actions[bot] 8a09630
Apply clang-format fixes
github-actions[bot] dff7b8a
Apply YAML formatter fixes
github-actions[bot] ac59b96
Export tag_invoke customization points in configuration.hpp
Copilot df6cf3e
Export missing symbols causing undefined-reference link failures
Copilot 356a737
Export to_product_specifications, output_api, and product_store::more…
Copilot 1f413c1
Apply clang-format fixes
github-actions[bot] 3598df2
Add _internal companion libraries for test access and size/timing com…
Copilot 12984fb
Move export headers from include/ to include/phlex/
Copilot fb2153b
Remove redundant INSTALL_INTERFACE from phlex_apply_symbol_visibility
Copilot bcffb4a
Apply cmake-format fixes
github-actions[bot] 5fc99e6
Add PHLEX_HIDE_SYMBOLS option to toggle symbol visibility mode
Copilot a37cb2e
Make layer_generator_internal conditional on PHLEX_HIDE_SYMBOLS
Copilot 4d4accd
Add PhlexOptimization.cmake: -fno-semantic-interposition, -fno-plt, P…
Copilot 9821b54
Auto-enable PHLEX_ENABLE_IPO for Release/RelWithDebInfo build types
Copilot cb78d90
Default PHLEX_HIDE_SYMBOLS based on CMAKE_BUILD_TYPE
Copilot 6512cc7
Auto-adjust PHLEX_HIDE_SYMBOLS default when PHLEX_ENABLE_IPO=ON
Copilot d3a57d9
Force PHLEX_HIDE_SYMBOLS=ON when PHLEX_ENABLE_IPO=ON (not just default)
Copilot ad2c0ab
Revert forced PHLEX_HIDE_SYMBOLS correction; make options fully indep…
Copilot 421f4ca
Specify default opt/debug options for different `CMAKE_BUILD_TYPE`s
greenc-FNAL File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PHLEX_HIDE_SYMBOLS / PHLEX_ENABLE_IPO defaults in PhlexOptimization.cmake are derived from CMAKE_BUILD_TYPE at include time, but this file sets a default CMAKE_BUILD_TYPE later (RelWithDebInfo). On a fresh configure with no CMAKE_BUILD_TYPE provided, the options will default as if the build type were unset (OFF/OFF), even though the project then forces RelWithDebInfo. Consider setting CMAKE_BUILD_TYPE earlier (before including PhlexOptimization.cmake) or computing these option defaults after the build-type default is established so they match the effective configuration.