Yesudeep Mangalapilly

Results 25 comments of Yesudeep Mangalapilly

I'd like the ability to do this as early as possible. This would enable us to use the library sooner.

I've currently worked around this by disabling automatic whitespace sanitization for java-mode (although this is not a real solution): ``` (add-hook 'java-mode-hook (lambda () (setq c-basic-offset 2 tab-width 2 indent-tabs-mode...

Turns out that https://github.com/google/benchmark/commit/4475ff6b8a7a4077d7492b76ef5278a3dc53a2e4 isn't the correct fix for this problem. Bazel apparently uses `/usr/bin/clang` to link C++ code, when it should be using `/usr/bin/clang++`. Sending a PR to revert...

Did Bazel CI have support for FreeBSD before? I'm okay with the official Bazel package that comes with FreeBSD.

Actually, having tried to build multiple libraries on FreeBSD/OpenBSD, I'd highly recommend adding support for them because it's helped me catch several subtle errors that occur on those systems. Bazel...