Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/.bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.4.2
9.0.0
2 changes: 1 addition & 1 deletion examples/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

"""Small C++ CLI application for sanity testing"""

load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test", "cc_shared_library")

cc_binary(
name = "main_cpp",
Expand Down
7 changes: 1 addition & 6 deletions examples/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,13 @@ module(
# *******************************************************************************
# Common useful functions and rules for Bazel
# *******************************************************************************
bazel_dep(name = "bazel_skylib", version = "1.8.1")
bazel_dep(name = "bazel_skylib", version = "1.8.2")

# *******************************************************************************
# Constraint values for specifying platforms and toolchains
# *******************************************************************************
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "score_bazel_platforms", version = "0.0.4")
# git_override(
# module_name = "score_bazel_platforms",
# remote = "https://github.com/eclipse-score/bazel_platforms.git/",
# commit = "583e52c58f1f110357aa93fcba3c01cbd7b51675",
# )

# *******************************************************************************
# C++ Rules for Bazel
Expand Down
1 change: 1 addition & 0 deletions templates/linux/cc_toolchain_config.bzl.template
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ load("@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl",
"tool_path",
"with_feature_set",
)
load("@rules_cc//cc:defs.bzl", "cc_common", "CcToolchainConfigInfo")
load(":flags.bzl",
"UNFILTERED_COMPILE_FLAGS",
"DEFAULT_COMPILE_FLAGS",
Expand Down
1 change: 1 addition & 0 deletions templates/qnx/cc_toolchain_config.bzl.template
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ load("@bazel_tools//tools/cpp:cc_toolchain_config_lib.bzl",
"tool_path",
"with_feature_set",
)
load("@rules_cc//cc:defs.bzl", "cc_common", "CcToolchainConfigInfo")
load(":flags.bzl",
"UNFILTERED_COMPILE_FLAGS",
"DEFAULT_COMPILE_FLAGS",
Expand Down