Re: [Lldb-commits] [PATCH] D18519: Allow building LLDB on Windows with MinGW 64/4.9.2 and later

2016-04-02 Thread Eran Ifrah via lldb-commits
eran.ifrah added a comment. Spoke too soon, the hack into `CMakeLists.txt` is still needed Passing ` -mbig-obj` crashes `ld.exe` (although it crashes in a much later stage, at about 77% in the build) Comment at: CMakeLists.txt:3-5 @@ -2,1 +2,5 @@ +if(MINGW_DEBUG) +# forc

Re: [Lldb-commits] [PATCH] D18519: Allow building LLDB on Windows with MinGW 64/4.9.2 and later

2016-04-02 Thread Eran Ifrah via lldb-commits
eran.ifrah updated this revision to Diff 52463. eran.ifrah marked 3 inline comments as done. eran.ifrah added a comment. - I have updated the patch with various indention fixes - added the -mbig-obj for clang's CMakeLists.txt file (which makes the hack I did earlier in LLDB obsolete) - answered s