Jeremy Ong
Jeremy Ong
Echoing this. Build fails immediately when attempting to target WoA64. When manually setting linker arch, the bundled DLLs linked to the project are all x64 only.
Thanks @daanx that did seem to do the trick and I see that `mimalloc-redirect` is being loaded much earlier now (just after the necessities: `ntdll.dll`, `KERNEL32.DLL`, `KERNELBASE.dll`, and `SHELL32.dll`). Do...
I ended up taking an evening to quickly whip up [this tool](https://github.com/StygianPop/PEachy) which does a quick-and-dirty import data directory reordering in-place in a PE file. For getting things to work...
Yep completely understood. Would it make sense for us to have a qt6 branch?
FWIW, I can see why this remains in the SPD samples. In fact, I would go one step further and suggest that all the CPU code be separated altogether. The...
To get a sense for the current AST structure, I parsed the following test code: ``` template class Foo {}; Foo foo; ``` Dumping the contents of the AST with...
No, the code in the original issue was simplified from the original use case, which was a templated load of a more general/complicated type. The workaround at the moment is...
You have `tbb::global_control`, so why not observe the quota yourself, pass the desired concurrency limit as a command line argument/environment variable and just set it yourself?
Thanks feel free to submit a PR for that and I'll accept it!