Alex Dubov
Alex Dubov
Presently, code-debug can either start a locally available gdb executable or open an ssh session to a remote host and spawn a gdb there talking mi2. However, it will be...
libgmp may be required by openssl and newer versions of gcc. libmpfr is used by newer versions of gcc. When hosting cross-compilers on a network share, it is convenient to...
I'm playing around with Java 9 modules and rely on gradle generated `.classpath` file. The `.classpath` defines the class path entries, but it appears not to affect module path used...
I have a project where a `cc_library` depends on `objc_library`. When building an `ios_application` target everything works fine (the actual application is in turn based on `objc_library`). However, when I...
Let's say I have a normal `ios_static_framework` rule. The following works as expected: > bazel build --apple_platform_type=ios --ios_multi_cpus=arm64,armv7 :my_static_framework Now I want to do something on the produced framework zip...
Some applications require several redis clients and may otherwise have complex logical structure. Thus, logging and metrics must be associated with the client rather than just sit in global scope....
I would like to build a small blazor server using bazel. The server itself builds just fine, but ends up broken, because razor, cshtml.cs and various data files are not...
Bazel rules for go support using a "host" toolchain, that is, whatever toolchain is invoked by "go" command found in system path. Is it possible for rules dotnet support the...
For longer running caches it is critically important to be able to obtain operational metrics - number of cached items, rate of eviction, possibly some internal statistics. All decent caches...
`Shutdowner` is a useful mechanism for willfully exiting applications, but it can be even better. To this end, the application channel can be upgraded to carry a value of type...