commit | 92d72bdbdd18583398e4db806c75aa9064b40d55 | [log] [tgz] |
---|---|---|
author | Dani Ferreira Franco Moura <danimoura@google.com> | Thu Jan 26 04:46:10 2023 -0800 |
committer | Copybara-Service <copybara-worker@google.com> | Thu Jan 26 04:46:45 2023 -0800 |
tree | e25d8cbe9633048b69bf3a80292e570f5319d6b6 | |
parent | 56316092e13bc09c431a6bb8b3efdbf4ac31ab1a [diff] |
Refactoring Move `getNullabilityForChild` and its dependencies to the shared `pointer_nullability` file, so it can be used by both the analysis and diagnosis parts of nullability verification. PiperOrigin-RevId: 504809308
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