-
Notifications
You must be signed in to change notification settings - Fork 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
[RFC] Add kotlinc option support in toolchain #303
Closed
Closed
Changes from all commits
Commits
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 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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -62,6 +62,7 @@ def _kotlin_toolchain_impl(ctx): | |||||
toolchain = dict( | ||||||
language_version = ctx.attr.language_version, | ||||||
api_version = ctx.attr.api_version, | ||||||
extra_copts = ctx.attr.extra_copts, | ||||||
debug = ctx.attr.debug, | ||||||
jvm_target = ctx.attr.jvm_target, | ||||||
kotlinbuilder = ctx.attr.kotlinbuilder, | ||||||
|
@@ -107,6 +108,10 @@ _kt_toolchain = rule( | |||||
"1.3", | ||||||
], | ||||||
), | ||||||
"extra_copts": attr.string_list( | ||||||
doc = "The extra options for kotlinc compiler.", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
allow_empty = True | ||||||
), | ||||||
"debug": attr.string_list( | ||||||
doc = """Debugging tags passed to the builder. Two tags are supported. `timings` will cause the builder to | ||||||
print timing information. `trace` will cause the builder to print tracing messages. These tags can be | ||||||
|
@@ -170,14 +175,16 @@ def define_kt_toolchain( | |||||
name, | ||||||
language_version = None, | ||||||
api_version = None, | ||||||
jvm_target = None): | ||||||
jvm_target = None, | ||||||
extra_copts = None): | ||||||
"""Define the Kotlin toolchain.""" | ||||||
impl_name = name + "_impl" | ||||||
_kt_toolchain( | ||||||
name = impl_name, | ||||||
language_version = language_version, | ||||||
api_version = api_version, | ||||||
jvm_target = jvm_target, | ||||||
extra_copts = extra_copts, | ||||||
debug = | ||||||
select({ | ||||||
"@io_bazel_rules_kotlin//kotlin/internal:builder_debug_trace": ["trace"], | ||||||
|
This file contains 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 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 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
Binary file not shown.
This file contains 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
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.
Should probably follow naming from
java_toolchain
and bekotlincopts
https://docs.bazel.build/versions/master/be/java.html#java_toolchain.javacoptsThere 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.
For context I plan to add
javacopts
tokt_jvm_library
later, havingkotlinc
andjavac
prefixes is prob best to avoid confusion while also being on same page withrules_java
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.
Gonna lean towards a hard no on adding javacopts to the kt_jvm_lib. When IR becomes available, it would get dicey.
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.
just quick question: what is
IR
?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.
Hold on,
javacoptions
are forjavac
call for.java
sources in mixed Kotlin/Javakt_jvm_library
, they have nothing to do withkotlinc
options :)Intermediate Representation, form of abstract (byte)code produced by Kotlin toolchain before it is transformed to actual instructions of the target platform
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.
Normally, I'd agree, but the kotlin java compilation is currently interleaved. I'm taking a wait and see approach.