Skip to content

Commit c7d53a8

Browse files

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ load("@bazel_skylib//lib:versions.bzl", "versions")
3232

3333
# Note that the versions library only works within a WORKSPACE file, see
3434
# https://github.com/bazelbuild/bazel/issues/8305.
35-
versions.check("3.0.0")
35+
versions.check("3.4.0")
3636

3737
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
3838

elisp/defs.bzl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ also load each other. However, it’s often preferable to only have one
289289
ensure that files get only loaded in their byte-compiled form.""",
290290
provides = [EmacsLispInfo],
291291
toolchains = [_TOOLCHAIN_TYPE],
292+
incompatible_use_toolchain_transition = True,
292293
implementation = _elisp_library_impl,
293294
)
294295

@@ -361,6 +362,7 @@ in batch mode.""",
361362
"@bazel_tools//tools/cpp:toolchain_type",
362363
_TOOLCHAIN_TYPE,
363364
],
365+
incompatible_use_toolchain_transition = True,
364366
implementation = _elisp_binary_impl,
365367
)
366368

@@ -449,6 +451,7 @@ normally pass, but don’t work under coverage for some reason.""",
449451
"@bazel_tools//tools/cpp:toolchain_type",
450452
_TOOLCHAIN_TYPE,
451453
],
454+
incompatible_use_toolchain_transition = True,
452455
implementation = _elisp_test_impl,
453456
)
454457

emacs/defs.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ The resulting executable can be used to run the compiled Emacs.""",
9696
executable = True,
9797
fragments = ["cpp"],
9898
toolchains = ["@bazel_tools//tools/cpp:toolchain_type"],
99+
incompatible_use_toolchain_transition = True,
99100
implementation = _emacs_binary_impl,
100101
)
101102

0 commit comments

Comments
 (0)