toolchains_llvm

LLVM toolchain for bazel (by bazel-contrib)

Toolchains_llvm Alternatives

Similar projects and alternatives to toolchains_llvm

  1. nixpkgs

    Nix Packages collection & NixOS

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. llvm-project

    The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

  4. Jekyll

    :globe_with_meridians: Jekyll is a blog-aware static site generator in Ruby

  5. noclip.website

    A digital museum of video game levels

  6. content

    The content behind MDN Web Docs

  7. Bazel

    a fast, scalable, multi-language and extensible build system

  8. Google Test

    GoogleTest - Google Testing and Mocking Framework

  9. sorbet

    A fast, powerful type checker designed for Ruby

  10. design

    WebAssembly Design Documents

  11. WSL

    26 toolchains_llvm VS WSL

    Source code behind the Windows Subsystem for Linux documentation. (by MicrosoftDocs)

  12. clace

    Hypermedia based internal tools for teams. Application server for containerized apps. Runbook automation like Rundeck, custom apps like Retool.

  13. starlark

    Starlark Language

  14. starlark-rust

    A Rust implementation of the Starlark language

  15. rules_python

    Bazel Python Rules

  16. gcc-toolchain

    A fully-hermetic Bazel GCC toolchain for Linux.

  17. bazel_rules_qt

    Bazel rules for Qt5

  18. apps

    6 toolchains_llvm VS apps

    Clace web applications (by claceio)

  19. crossword-composer

    Constraint solver for word games.

  20. amp.dev

    The AMP Project Website.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better toolchains_llvm alternative or higher similarity.

toolchains_llvm discussion

Log in or Post with

toolchains_llvm reviews and mentions

Posts with mentions or reviews of toolchains_llvm. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-30.
  • Using Bazel to build a new Rust project
    2 projects | news.ycombinator.com | 30 Sep 2024
    In my previous position, we accomplished this using a "dev docker" (which I covered generally in a previous post: https://blog.fahhem.com/2023/12/dev-onboarding-then-now/) that's based around a specific version of Ubuntu (20.04) so the glibc is tied to that.

    In another project, I used a hermetic C++ toolchain (you can use gcc with https://github.com/f0rmiga/gcc-toolchain/ or clang/llvm with https://github.com/bazel-contrib/toolchains_llvm) that pulled in its own (locked) version of glibc and lld, etc.

  • An Overview of the Starlark Language
    5 projects | news.ycombinator.com | 5 Jun 2024
    The biggest feature I want out of Starlark the language (not Bazel the build system) is to allow optional type annotations. They don’t have to do anything, they don’t have to specified, it just needs to be syntactically valid to put type annotations somewhere. If there were syntax for type annotations that tools like Bazel ignored, it would be possible for some enterprising soul who’s forced to use Bazel at work to throw up an initial prototype of a type checker and a language server for Starlark in Bazel. The language is not that complicated that a type checker couldn’t be written by a hobbiest.

    My biggest frustration when using Bazel is not even Bazel—it’s the fact that when I’m looking at code like this[1], everything comes from a single, unannotated `rctx` variable that has no type annotation. So when I’m trying to read the code, it’s a matter of constantly grepping the repo, grepping the bazel docs, and grepping the bazel source code to get any new code written.

    Why can’t I just hover and see the docs? Why can’t I press `rctx.` and see all the attributes available?

    [1] https://github.com/bazel-contrib/toolchains_llvm/blob/master...

  • cc toolchain for macOS Monterey / Apple M1
    2 projects | /r/bazel | 1 Dec 2022
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") BAZEL_TOOLCHAIN_TAG = "0.7.2" BAZEL_TOOLCHAIN_SHA = "f7aa8e59c9d3cafde6edb372d9bd25fb4ee7293ab20b916d867cd0baaa642529" http_archive( name = "com_grail_bazel_toolchain", sha256 = BAZEL_TOOLCHAIN_SHA, strip_prefix = "bazel-toolchain-{tag}".format(tag = BAZEL_TOOLCHAIN_TAG), canonical_id = BAZEL_TOOLCHAIN_TAG, url = "https://github.com/grailbio/bazel-toolchain/archive/{tag}.tar.gz".format(tag = BAZEL_TOOLCHAIN_TAG), ) load("@com_grail_bazel_toolchain//toolchain:deps.bzl", "bazel_toolchain_dependencies") bazel_toolchain_dependencies() load("@com_grail_bazel_toolchain//toolchain:rules.bzl", "llvm_toolchain") llvm_toolchain( name = "llvm_toolchain", llvm_version = "15.0.5", ) load("@llvm_toolchain//:toolchains.bzl", "llvm_register_toolchains") llvm_register_toolchains() http_archive( name = "com_google_googletest", urls = ["https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip"], strip_prefix = "googletest-609281088cfefc76f9d0ce82e1ff6c30cc3591e5", )
  • Incremental Builds for Haskell with Bazel
    7 projects | news.ycombinator.com | 23 Jun 2022
    Yeah the cross-compilation thing is definitely a rough spot. I have one project that's able to work around it via extensive hacks with macros, but at some point I'll need to do it "the right way."

    Honestly if the docs had a canonical example of e.g. using unix_cc_toolchain_config (example: [0]) + Bootlin to compile for aarch64, it'd probably go a long way to making things understandable. Because say what you will about the old CROSSTOOL approach, at least there was a nice tutorial for it.

    [0] https://github.com/grailbio/bazel-toolchain/blob/f14a8a5de8f...

  • Cross-compiling to linux on MacOS with cgo
    2 projects | /r/bazel | 9 Apr 2021
    I'm really not familiar with this issue or Go nor C++ overall, but if all you need is to set up a C++ toolchain, this should be quite simple and solve your issue.
  • WebAssembly
    9 projects | news.ycombinator.com | 27 Feb 2021
    The trick is that to provide Bazel with a custom toolchain involves way more than just setting an environment variable, because Bazel wants to control installing and making available the compiler reliably (e.g., what if `emcc` is not present on the system where Bazel was invoked? Bazel solves that problem by fetching it and building it for that system)

    There are projects that provide drop-in support for custom toolchains (e.g., we use this project[0] in Sorbet to fetch and build a custom LLVM/Clang toolchain for every host we build on (rather than relying on the system toolchain). But I'm not aware of a project that has done that for Emscripten. Maybe it would be as easy as plucking out what we've done in our project into a project that others could depend on, but to quote a colleague:

    > Setting up a cc toolchain in Bazel is a unique sort of pain.

    [0] https://github.com/grailbio/bazel-toolchain/

  • A note from our sponsor - SaaSHub
    www.saashub.com | 18 Jan 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic toolchains_llvm repo stats
6
307
8.8
4 days ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Starlark is
the 64th most popular programming language
based on number of references?