From 44d87d8ea3edb172f79277e350baa5f13faae819 Mon Sep 17 00:00:00 2001 From: d-asnaghi Date: Sat, 13 Jun 2020 17:47:50 -0400 Subject: [PATCH] [GCC] upgraded toolchain --- deps.bzl | 6 +++--- rules/nrf.bzl | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deps.bzl b/deps.bzl index c4d8681..e766112 100644 --- a/deps.bzl +++ b/deps.bzl @@ -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", ) diff --git a/rules/nrf.bzl b/rules/nrf.bzl index 9899343..c40ce06 100644 --- a/rules/nrf.bzl +++ b/rules/nrf.bzl @@ -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]