commit | 48249aa1a79dfdf3bde80ac2f679e86a21e0cde2 | [log] [tgz] |
---|---|---|
author | Lukasz Anforowicz <lukasza@google.com> | Thu Feb 23 16:59:21 2023 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Feb 23 17:00:04 2023 -0800 |
tree | 1d0094223fe9042b7971c2feb2dbd00e6e57d3c5 | |
parent | f1acde76ce35d63c9e93accdae0c61a7e9144cec [diff] |
Remove another unused local variable. Ooops - I missed that removing the unused local variable `instance_method_metadata` in a recent CL means that now another local variable is unused: `member_func_metadata`. PiperOrigin-RevId: 511923799
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 -DCMAKE_INSTALL_PREFIX=install $ cmake --build build -j $ # wait... $ cmake --install build $ cd ../crubit $ LLVM_INSTALL_PATH=../llvm-project/install bazel build //rs_bindings_from_cc:rs_bindings_from_cc_impl