kvtb
kvtb
It won't work with static linking :( because of `dlsym` to get original functions: https://github.com/facebook/folly/blob/8140959ee90ac4fd41955f10664a1c4b6ca8dc46/folly/experimental/exception_tracer/ExceptionTracerLib.cpp#L116-L117
Something like https://stackoverflow.com/a/3053921/15239223 should be used to handle static linking
It may be more correct to generate code which call exitRule explicitly while it is possible: ```diff auto onExit = finally([=] { exitRule(); }); try { ... } catch (RecognitionException...
> I'd gladly just ditch the whole integer part. just replace ```c++ CLI::Transformer(hashTypeMap, CLI::ignore_case) ``` with ```c++ CLI::Transformer(hashTypeMap, CLI::ignore_case) .description(CLI::detail::generate_map(CLI::detail::smart_deref(yourmap), true)); ``` or any custom `.description(` generated out of your...
> I restored older v2.0.X tags. How goes good? The tags are disappeared again :(
As far as I understood, it is a feature. The root problem is lighthouses do not report to each other, so, although a lighthouse knows about itself, it has no...
or just moved to private repo?
> There is this repository called Nix-windows. Not sure in what state it is. > https://github.com/nix-windows/nix > > I have also been interested in using Nix for some open-source projects....
> > Nix works on WSL and Cygwin just out of the box. > > Port to MSYS is pretty straightforward. > > Thanks. That's better than nothing, but I...
I really wonder why nixpkgs did not appear first for native Windows. The idea of "portable apps" ("portable" here means the ability to copy app into any directory or cdrom...