[Lldb-commits] [PATCH] D30926: Fix MSVC signed/unsigned conversion and size_t conversion warnings in LLDB

2017-03-13 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe created this revision. I've been porting swift-lldb to Windows/MSVC, and encountered some size_t/unsigned implicit conversion warnings. I sent a PR (https://github.com/apple/swift-lldb/pull/161) and @jimingham suggested I push some of them here. Repository: rL LLVM https://reviews.l

[Lldb-commits] [PATCH] D30927: Normalize the LLVM cmake path before appending it to the module path

2017-03-13 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe updated this revision to Diff 91668. hughbe added a comment. Fix preview https://reviews.llvm.org/D30927 Files: cmake/modules/LLDBStandalone.cmake Index: cmake/modules/LLDBStandalone.cmake === --- cmake/modules/LLDBStand

[Lldb-commits] [PATCH] D30927: Normalize the LLVM cmake path before appending it to the module path

2017-03-13 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe created this revision. hughbe added a project: LLDB. Herald added a subscriber: mgorny. LLVM_CMAKE_PATH has backlashes in it. CMake then tries to append this to CMAKE_MODULE_PATH but gets confused and errors out as it thinks we're providing an escape sequence (that's unknown, causing gene

[Lldb-commits] [PATCH] D30926: Fix MSVC signed/unsigned conversion and size_t conversion warnings in LLDB

2017-03-13 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe updated this revision to Diff 91670. hughbe added a comment. Fix file names https://reviews.llvm.org/D30926 Files: source/Core/FormatEntity.cpp Index: source/Core/FormatEntity.cpp === --- source/Core/FormatEntity.cpp +++

[Lldb-commits] [PATCH] D30927: Normalize the LLVM cmake path before appending it to the module path

2017-03-13 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe updated this revision to Diff 91676. hughbe added a comment. Address feedback from Zachary Turner https://reviews.llvm.org/D30927 Files: cmake/modules/LLDBStandalone.cmake Index: cmake/modules/LLDBStandalone.cmake === --

[Lldb-commits] [PATCH] D30927: Normalize the LLVM cmake path before appending it to the module path

2017-03-15 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe edited reviewers, added: zturner; removed: beanz. hughbe added a comment. As per discussion on lists https://reviews.llvm.org/D30927 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb

[Lldb-commits] [PATCH] D30926: Fix MSVC signed/unsigned conversion and size_t conversion warnings in LLDB

2017-03-15 Thread Hugh Bellamy via Phabricator via lldb-commits
hughbe edited reviewers, added: zturner; removed: jingham, hughbe. hughbe added a comment. This revision now requires review to proceed. As per discussion on lists https://reviews.llvm.org/D30926 ___ lldb-commits mailing list lldb-commits@lists.llvm