toolchains_arm_gnu icon indicating copy to clipboard operation
toolchains_arm_gnu copied to clipboard

ARM embedded toolchains for Bazel

Results 13 toolchains_arm_gnu issues
Sort by recently updated
recently updated
newest added

Is there a simple way to specify compiling with arm-none-eabi-g++ instead of arm-none-eabi-gcc?? Have a bug with my code C++ code and how it is linked. Want to cross off...

good first issue

# Description - Add `aarch64-none-elf` as a target compiler - Add an example of cross compilation for raspberry PI (with QEMU) @makestuffwork, this should complement well your `aarch64` linux compiler...

After https://github.com/hexdae/toolchains_arm_gnu/pull/57 I faced the following issue with our build: ``` external/toolchains_arm_gnu++arm_toolchain+arm_none_eabi_linux_x86_64/arm-none-eabi/include/c++/13.2.1/stdlib.h:30:3: error: #include_next is a GCC extension [-Werror] ``` This fixes it, as the "correct" stdlib.h seems to be...

Noticed this on accident at first, but would be quite helpful as I need https://github.com/hexdae/toolchains_arm_gnu/commit/2efd34df297b454a671f7656df7615628a2a7dc2 for my project. Thanks 😄 https://registry.bazel.build/modules/toolchains_arm_gnu

Replace use of `repository_ctx.download_and_extract` with a call to `http_archive`, which handles NETRC authentication. Users can change the download URL with [--downloader_config](https://bazel.build/reference/command-line-reference#common_options-flag--downloader_config).

At my day job, we've had to patch `toolchains_arm_gnu` to use an alternative download location to prevent rate-limiting from the default download location. Would you be open to allowing users...

@hexdae would you accept a set of PRs that integrate [Arm Clang](https://github.com/arm/arm-toolchain/blob/arm-software/arm-software/embedded/README.md)? I think the existing toolchain rules could be extended to allow the use to specify use of either...

Hello, we've noticed an issue today in our Bazel builds. When we are trying to download files from the ARM developer website, checksums do not match. I believe this is...