diff options
author | Ayke van Laethem <[email protected]> | 2019-04-02 19:17:53 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2019-04-04 12:50:15 +0200 |
commit | 2523772b5d021472f4f15d548d9140b518690d54 (patch) | |
tree | 6e544c728cffeff496b8c54ce380404f50caa166 /.circleci | |
parent | 31d57fd3d190d0ff46f7c832a498cd4e3bd9090b (diff) | |
download | tinygo-2523772b5d021472f4f15d548d9140b518690d54.tar.gz tinygo-2523772b5d021472f4f15d548d9140b518690d54.zip |
arm: use the lld linker
LLD version 8 has added support for armv6m:
https://reviews.llvm.org/D55555
This means we can use LLD instead of arm-none-eabi-ld, eliminating our
dependency on GNU binutils.
There are small differences in code size, but never more than a few
bytes.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index be4d764d7..f01dd54f3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,6 @@ commands: libclang<<parameters.llvm>>-dev \ lld<<parameters.llvm>> \ gcc-arm-linux-gnueabihf \ - binutils-arm-none-eabi \ libc6-dev-armel-cross \ gcc-aarch64-linux-gnu \ libc6-dev-arm64-cross \ |