Skip to content

Commit 44d87d8

Browse files
committed
[GCC] upgraded toolchain
1 parent fb76712 commit 44d87d8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

deps.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def nRF5_deps():
1414
# Toolchain: arm-none-eabi-gcc.
1515
http_archive(
1616
name = "arm_none_eabi",
17-
sha256 = "a6dbabaabfc0150862c8cab20db11422b785c4cff4e13bd12281725ecacdf886",
18-
strip_prefix = "bazel-arm-none-eabi-1.0",
19-
url = "https://github.com/d-asnaghi/bazel-arm-none-eabi/archive/v1.0.tar.gz",
17+
sha256 = "3d3728cbe88b08c12cd2cb89afcff9294bd77be958c78188db77fdc8ab7e7a5d",
18+
strip_prefix = "bazel-arm-none-eabi-1.1",
19+
url = "https://github.com/d-asnaghi/bazel-arm-none-eabi/archive/v1.1.tar.gz",
2020
)

rules/nrf.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ def nrf_binary(
1717
Args:
1818
name: target description.
1919
linker: path to an .ld file or label.
20-
sdk_srcs: path of nRF SDK .c files, relative to the SDK root.
20+
sdk_srcs: path of nRF SDK .c and .a files, relative to the SDK root.
2121
sdk_includes: path of nRF SDK include folders, relative to the SDK root.
2222
srcs: cc_binary srcs.
2323
copts: cc_binary copts.
2424
deps: cc_binary deps.
2525
linkopts: cc_binary linkopts.
2626
**kwargs: cc_binary additional arguments.
27-
"""
27+
"""
2828

2929
if name == None:
3030
name = native.package_name().split("/")[-1]

0 commit comments

Comments
 (0)