commit | d7d68f059e6bf5b795961482b3047a7c675e998a | [log] [tgz] |
---|---|---|
author | Lukasz Anforowicz <lukasza@google.com> | Thu May 26 07:41:02 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Thu May 26 07:41:37 2022 -0700 |
tree | 37d683da73a8ee905cbe479a9e74a3f351008343 | |
parent | 99fddffbe3154e95070b9e47d355e9b697122068 [diff] |
Support custom path to the `rustfmt` executable. This CL avoids hardcoding ".../bin/rustfmt" path in the rustfmt function in token_stream_printer.rs. This is replaced with an argument of a new cmdline parameter: --rustfmt_exe_path. PiperOrigin-RevId: 451159464
Extremely experimental interop tooling for C++ and Rust.
Please don‘t use, this is an experiment and we don’t yet know where will it take us. There will be breaking changes without warning. Unfortunately, we can't take contributions at this point.
$ apt install clang lld bazel $ git clone git@github.com:google/crubit.git $ cd crubit $ bazel build --linkopt=-fuse-ld=/usr/bin/ld.lld //rs_bindings_from_cc:rs_bindings_from_cc_impl
$ git clone https://github.com/llvm/llvm-project $ cd llvm-project $ CC=clang CXX=clang++ cmake -S llvm -B build -DLLVM_ENABLE_PROJECTS='clang' -DCMAKE_BUILD_TYPE=Release $ cmake --build build -j $ # wait... $ cd ../crubit $ PREBUILT_LLVM_PATH=../llvm-project bazel build //rs_bindings_from_cc:rs_bindings_from_cc_impl