chuggafan
chuggafan
The reason I suggested it was to allow for other things than Code::Blocks, and while Code::Blocks seems to have some code completion capabilities Code::Blocks seems to rely exclusively on GCC...
Adding in CQuery support for the compiler would, in my view, be the same thing as CQuery is basically just a LSP wrapper for libclang. Either way it'd accomplish an...
The IDE is a separate package that can be downloaded separately, the problem with OCIDE is that Compiler and IDE development are both heruclean tasks on their own and maintaining...
>What is necessary to use VSCode as IDE and Debugger? Well, for non-OrangeC things the package vscode-cpptools stuff from microsoft. It's what I use for looking because it uses the...
Found the issue: that _NOEXCEPT define is too far down for the integral_constant struct, causing it to bug out and crash with the error "unexpected end of file". Fun times.
Yhea... main issue I found though was that not all functions support STDCALL, specifically the one's we'd want to use, so we'd probably have to change that (albeit that shouldn't...
Surprisingly my testcase actually got optimized, I have *NO* idea when this happened and it presumably happened really recently. ``` ;File test.s ;Compiler version OCC Version 6.0.51.1 section code align=2...
Theoretically, depending on the architecture the two jumps might be nanoseconds faster than 2 rets on some Intel platforms IIRC from that manual, the ideal here would probably be to...
waitpid seems to not exist on windows, so it'd be probably difficult to implement without implementing pthreads, I'll look into updating the ENTIRE libcxx library after I update threading to...
Hmm, considering normal threading support for C11 threads is in here and I can now work on getting c++11 (and c++14 stuff) in from libcxx this seems moreso obsoleted, if...