Dimiter 'malkia' Stanev

Results 46 comments of Dimiter 'malkia' Stanev

I've been running the `singleton_test` in my soft-fork that targets single .dll for Windows (combining sdk+api) - and it's passing in that version. - https://github.com/malkia/opentelemetry-cpp/actions/runs/7878684091/job/21497437677#step:5:8420 - this has been my...

I have BUILD file for this in my fork - https://github.com/malkia/opentelemetry-cpp/blame/main/examples/zipkin/BUILD - since it probably won't work here, here is a bit modified (hopefully still works) ``` package(default_visibility = ["//visibility:public"])...

Instead of having two code paths (nightmares) for static_cast and dynamic_cast - can't we use something akin to Qt's cast - https://doc.qt.io/qt-6/qobject.html#qobject_cast - it's probably more work to add this...

I've run into the same, workaround is crude - either use env/args or defines in my `cc_binary` tool to get the `rlocationpath` and the tool is no longer generic (e.g....

One more flag that can help: https://developercommunity.visualstudio.com/t/The-result-of-__FILE__-is-not-lower-case/1392988?q=associate+to+test+case ``` -d1ForceLowerCaseNames ```

BuildXL uses subst to map out the current folder (build/src) into an stable one. ``` subst B:\ d:\p\code ``` Then builds from B:\ - and paths are seeing as if...

On the other hand C# has /pathmap to remap one or more roots to another stable name, I guess C++ (MSVC) is just missing this....

Holy... didn't know this worked for C++ too! Thanks for exploring!!!

I'm running into the same issue, but with C++ project https://github.com/malkia/arrow/tree/bazel

Thanks. I'll take a look later on my Mac (10.8.2) On Nov 8, 2012 12:44 PM, "headchant" [email protected] wrote: > Hi, > > ufo seems like a great project. I...