-
Notifications
You must be signed in to change notification settings - Fork 62
Adopt KUP requirements imposed by KT-75078 #214
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
base: master
Are you sure you want to change the base?
Conversation
Can you please also add logging for all of these flags? |
And can you please also add this: |
Did you mean |
842013c
to
216cd0a
Compare
build.gradle.kts
Outdated
"-Wextra", | ||
"-Xuse-fir-experimental-checkers" | ||
) | ||
logger.info("kotlin_Werror_override was set to 'disable'") |
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.
@woainikk that'll emit a message for each and every compilation task, but I think it's better than writing it outside tasks configuration and them accidentally forgetting to setup freeCompilerArgs
.
-Werror
doesn't work with2.0.20
, so we either have to check the compiler version before using it, or update the Kotlin version (#213).Closes #212