Skip to content

Commit db91240

Browse files
committed
grpc-native: Little fix
1 parent efcac56 commit db91240

File tree

4 files changed

+4
-21
lines changed

4 files changed

+4
-21
lines changed

cinterop-c/MODULE.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ bazel_dep(
2121
GRPC_VERSION = "1.74.1"
2222

2323
## gRPC source dependency
24-
2524
bazel_dep(
2625
name = "grpc",
2726
version = GRPC_VERSION,

cinterop-c/MODULE.bazel.lock

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cinterop-c/toolchain/BUILD.bazel

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@ cc_toolchain(
3131

3232
toolchain(
3333
name = "toolchain_linux_x64_konan",
34-
exec_compatible_with = [
35-
"@platforms//os:macos",
36-
"@platforms//os:linux",
37-
],
3834
target_compatible_with = [
3935
"@platforms//os:linux",
4036
"@platforms//cpu:x86_64",

cinterop-c/toolchain/cc_toolchain_config.bzl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,6 @@ def _impl(ctx):
1717
tool_path(name = "strip", path = "/usr/bin/true"),
1818
]
1919

20-
features = [
21-
feature(
22-
name = "add_shim_include",
23-
enabled = True,
24-
flag_sets = [
25-
flag_set(
26-
actions = ["c++-compile", "cpp-compile", "c-compile"],
27-
flag_groups = [flag_group(flags = ["-isystem", "toolchain/cxxshim"])],
28-
),
29-
],
30-
),
31-
]
32-
3320
deps = ctx.var.get("KONAN_DEPS")
3421
if not deps:
3522
fail("Set --define=KONAN_DEPS=/path/to/.konan/dependencies")
@@ -44,7 +31,6 @@ def _impl(ctx):
4431
target_cpu = "x86_64",
4532
target_system_name = "linux",
4633
tool_paths = tool_paths,
47-
features = features,
4834
cxx_builtin_include_directories = [
4935
deps + "/apple-llvm-20200714-macos-aarch64-essentials/lib/clang/11.1.0/include",
5036
deps + "/llvm-19-aarch64-macos-essentials-75/lib/clang/19/include",

0 commit comments

Comments
 (0)