commit | 4b9fae79637f6b37d44193cc78991f79201817ef | [log] [tgz] |
---|---|---|
author | Lukasz Anforowicz <lukasza@google.com> | Fri Mar 17 14:32:46 2023 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Fri Mar 17 14:33:24 2023 -0700 |
tree | 2160de9956f9041b875ee25228b54e07424bbd57 | |
parent | ea1c634744c84451e55c2805cd8c3b23baa8f5ee [diff] |
Delete left-over test declarations from `operators.h`. https://github.com/google/crubit/commit/f665130f1367e8e2cdee291e09546c256dd0685e has branched/moved a subset of test inputs from `rs_bindings_from_cc/test/struct/operators/operators.cc` (and `.h`) into `rs_bindings_from_cc/test/struct/operators/add.cc` (and `.h`). This CL finishes the move, by deleting left-over test declarations from `operators.h` (all of them are already present in `add.h`). PiperOrigin-RevId: 517510776
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