1declare_args() {
2 # Whether lldb links against libedit. Set to `true` or `false`, or to
3 # `"default"` to get the platform default.
4 lldb_enable_libedit = "default"
5}
6
7if (lldb_enable_libedit == "default") {
8 lldb_enable_libedit = current_os == "mac"
9}
10