Skip to content

Commit

Permalink
[GCC] upgraded toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
hexdae committed Jun 13, 2020
1 parent fb76712 commit 44d87d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def nRF5_deps():
# Toolchain: arm-none-eabi-gcc.
http_archive(
name = "arm_none_eabi",
sha256 = "a6dbabaabfc0150862c8cab20db11422b785c4cff4e13bd12281725ecacdf886",
strip_prefix = "bazel-arm-none-eabi-1.0",
url = "https://github.com/d-asnaghi/bazel-arm-none-eabi/archive/v1.0.tar.gz",
sha256 = "3d3728cbe88b08c12cd2cb89afcff9294bd77be958c78188db77fdc8ab7e7a5d",
strip_prefix = "bazel-arm-none-eabi-1.1",
url = "https://github.com/d-asnaghi/bazel-arm-none-eabi/archive/v1.1.tar.gz",
)
4 changes: 2 additions & 2 deletions rules/nrf.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ def nrf_binary(
Args:
name: target description.
linker: path to an .ld file or label.
sdk_srcs: path of nRF SDK .c files, relative to the SDK root.
sdk_srcs: path of nRF SDK .c and .a files, relative to the SDK root.
sdk_includes: path of nRF SDK include folders, relative to the SDK root.
srcs: cc_binary srcs.
copts: cc_binary copts.
deps: cc_binary deps.
linkopts: cc_binary linkopts.
**kwargs: cc_binary additional arguments.
"""
"""

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

0 comments on commit 44d87d8

Please sign in to comment.