build: don't set global compiler flags#54
Merged
alandefreitas merged 1 commit intoalandefreitas:developfrom May 4, 2025
Merged
build: don't set global compiler flags#54alandefreitas merged 1 commit intoalandefreitas:developfrom
alandefreitas merged 1 commit intoalandefreitas:developfrom
Conversation
Owner
|
Wouldn't if (SMALL_MASTER_PROJECT)
set_optimization_flags()
endif()at the calling site be a shorter diff with better separation of concerns? |
eb39f38 to
f759d52
Compare
Contributor
Author
|
Changed per your suggestion and provided a fallback if people wanted the old behaviour. |
Owner
|
Sorry. Just had another look at this whole thing. The correct approach would be for none of that to even exist, let alone different behaviors for MASTER/ROOT and subdirs. If user is responsible for choosing the build type and the build type already sets the flags. So that's it. This function shouldn't exist and we should never call it. |
Owner
|
LGTM! Thanks! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
P.S. Maybe this macro can be removed altogether? Not sure what it is for in the first place.