Keith Smiley

Results 347 issues of Keith Smiley

Currently when building a project for Android, the rules_foreign_cc build seems to still think the build is happening for macOS. This results in downstream CMake config not being correctly set...

One thing I've noticed with rules_foreign_cc in envoy is that if I pass `--linkopt=-foo` to debug something or try a new option, it invalidates all rules_foreign_cc rules. I haven't dug...

Can Close?

Right now it looks like buildfarm does some handling of the `--google_credentials` (although I'm not exactly sure what that's for). Is this the expected method of authentication or is the...

security

When using rules_rust to link a rust library into a final C / C++ binary, you end up hitting some linker issues around missing allocator symbols: ``` Undefined symbols for...

question

Currently when producing a static library that depends on a rust_library we always get `libprofiler_builtins*.rlib` in the output binary. My understanding of this library is that it's likely only necessary...

We have a rule like this: ```bzl rust_binary( name = ..., edition = "2018", crate_type = "cdylib", out_binary = True, ... ) ``` which since https://github.com/bazelbuild/rules_rust/commit/5abeb93333db6ca1c44dbb55860987c408553a11 (in release 0.4.0) fails...

Fixes https://github.com/bazelbuild/rules_rust/issues/1330

When linking rust libraries into a final C/C++ binary, sometimes you may need a library to be force loaded in order to include symbols that may otherwise not be referenced,...

enhancement

For some projects there is a [performance benefit](https://github.com/bazelbuild/bazel/issues/8230) gained by disabling sandboxing. With sandboxing disabled when I integrated rules_rust + [cxx](https://github.com/dtolnay/cxx) into a project I found that there is some...

bug

This test runner is a drop in replacement for the default iOS test runner that you can use by setting it on the `runner` attribute of an `ios_unit_test`. It uses...