Skip to content

Commit

Permalink
Include user_compiler_flags attribute type change
Browse files Browse the repository at this point in the history
This requires a bump to our Bazel minimum version.

See: bazelbuild/bazel#6383
  • Loading branch information
schroederc committed Oct 18, 2018
1 parent b5de621 commit e01ac60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ load("//:version.bzl", "check_version")

# Check that the user has a version between our minimum supported version of
# Bazel and our maximum supported version of Bazel.
check_version("0.16", "0.18")
check_version("0.18", "0.18")

load("//:setup.bzl", "kythe_rule_repositories")

Expand Down
2 changes: 1 addition & 1 deletion tools/build_rules/verifier_test/cc_indexer_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _compiler_options(ctx, cpp, copts, includes):
variables = cc_common.create_compile_variables(
feature_configuration = feature_configuration,
cc_toolchain = cpp,
user_compile_flags = depset(copts),
user_compile_flags = copts,
system_include_directories = depset(includes),
add_legacy_cxx_options = True,
)
Expand Down

0 comments on commit e01ac60

Please sign in to comment.