Skip to content

Commit

Permalink
Add support for -Xuse-fir-lt (#972)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bencodes authored May 15, 2023
1 parent 9d72d2c commit d6622e2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/starlark/core/options/opts.kotlinc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,16 @@ _KOPTS_ALL = {
True: ["-Xreport-perf"],
},
),
"x_use_fir_lt": struct(
args = dict(
default = False,
doc = "Compile using LightTree parser with Front-end IR. Warning: this feature is far from being production-ready",
),
type = attr.bool,
value_to_flag = {
True: ["-Xuse-fir-lt"],
},
),
"jvm_target": struct(
args = dict(
default = "",
Expand Down

0 comments on commit d6622e2

Please sign in to comment.