commit | 248dd7bf121123e6099918c262bfb67aff648f3f | [log] [tgz] |
---|---|---|
author | Martin Brænne <mboehme@google.com> | Mon Mar 27 23:44:08 2023 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Mon Mar 27 23:44:46 2023 -0700 |
tree | 86a224a2a204e08840e908d9260f5cb6283381df | |
parent | 2a17af3119f7d82dbf97f4bbda88977c69d8d235 [diff] |
Move pointer_nullability_verification_test to a new "test" subdirectory. The intent is that all integration tests will live in this subdirectory, whereas unit tests will live in the main directory alongside the code they test. In subsequent changes, I will split up pointer_nullability_verification_test.cc into several smaller files grouped by the types of behavior that the test is testing, similar to the way that lifetime_analysis/test is organized. PiperOrigin-RevId: 519938995
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