toolchains_arm_gnu
toolchains_arm_gnu copied to clipboard
ARM embedded toolchains for Bazel
I discovered that because of the hardwired includes here: https://github.com/hexdae/toolchains_arm_gnu/blob/v1.1.0/toolchain/templates/compiler.BUILD#L24-L33 ```Starlark srcs = [ "{}/include/c++/{}".format(PREFIX, VERSION), "{}/include/c++/{}/{}".format(PREFIX, VERSION, PREFIX), "{}/include".format(PREFIX), "lib/gcc/{}/{}/include".format(PREFIX, VERSION), "lib/gcc/{}/{}/include-fixed".format(PREFIX, VERSION), ], ``` ## General issue If...
I would like to be able to specify that a binary should be built for a specific platform and run it under `gdb` ```sh toolchains_arm_gnu/examples/bzlmod on HEAD (2f22aa8) [!]...
I tried to update to 1.1.0 with: ```starlark bazel_dep( name = "toolchains_arm_gnu", version = "1.1.0", dev_dependency = True, ) ``` but it doesn't seem to actually use `1.1.0`. For example,...