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

Avoid add_compile_options in the toolchain file #71

Merged
merged 2 commits into from
Jul 14, 2023

Conversation

MarkSchofield
Copy link
Owner

#70 correctly called out that add_compile_options as used in the toolchain wasn't right - as per the documentation "These options are used when compiling targets from the current directory and below" - which means that all targets get the options, even if the target isn't C++. The more correct option is to use CMAKE_LANG_FLAGS_INIT, which allows the toolchain to set the compilation flags for a specific language - in this case CXX.

To help validate, I've added an 'example' project that compiles as C, which should help make sure that C++ options aren't incorrectly picked-up by the C compiler.

@MarkSchofield MarkSchofield merged commit 05449d3 into main Jul 14, 2023
13 checks passed
@MarkSchofield MarkSchofield deleted the mschofie/avoid-compile-options branch July 14, 2023 04:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant