chuggafan

Results 226 comments of chuggafan

The issue is actually the 2nd to last quoted item, might have to do with the TWO -c switches being used, as the filename list as read by the thing...

I dunno what's going on exactly other than the modification I did when there's an error saying there's multiple input files to print every file: ``` printf("Filename list:\n"); for (auto...

I modified the makefile in the test directory to: ``` all: py \orangec\lit\lit.py --echo-all-commands std ``` And from there I just ctrl+c'd once stuff went wrong and copy/pasted the output,...

Yhea, that's a lot of why I wanted things such as c++11 full threading support: it makes supporting linux SO much easier because you're removing windows header dependencies

A good way to fix the issue with the omake command lines is to allow it to link it in parts, e.g. 1 part gets linked together to form a...

Yhea, one of the things the linker seems to be doing is pulling in gaurenteed unrelated things, such as on the latest master the lines: ```cpp #include extern "C" {...

I believe it would work, and we can have ASAN during CLANG & MSVC stuff, however, it should be split into a different build setup as the way to debug...

Began attempts at this, found stuff like utils.cpp where I don't understand what the algorithm is trying to achieve being caught, the way I did this was by modifying ms.mak...

@LADSoft I put the code for QualifiedFile in here already, but I just want to check: That `!p || p[-1] == '.'` check is invalid because if p is not...

The other question in that case is if the whole !p thing needs to be checked, as if p returns null there's no `.` at all within the string, I...