[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-16 Thread Luke Drummond via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL289956: Fix broken escaping of commands in the build (authored by ldrumm). Changed prior to commit: https://reviews.llvm.org/D26757?vs=79578&id=81761#toc Repository: rL LLVM https://reviews.llvm.org

Re: [Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-15 Thread Luke Drummond via lldb-commits
Hi Zachary On 15/12/16 17:52, Zachary Turner wrote: I think this was lgtm'ed wasn't it? Chris checked the cmake changes, so if you're happy with the python fixes I'll go ahead and commit this. Thanks Luke ___ lldb-commits mailing list lldb-commit

Re: [Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-15 Thread Zachary Turner via lldb-commits
I think this was lgtm'ed wasn't it? On Thu, Dec 15, 2016 at 9:46 AM Luke Drummond via Phabricator < revi...@reviews.llvm.org> wrote: > ldrumm marked 2 inline comments as done. > ldrumm added a comment. > > ping > > > https://reviews.llvm.org/D26757 > > > >

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-15 Thread Luke Drummond via Phabricator via lldb-commits
ldrumm marked 2 inline comments as done. ldrumm added a comment. ping https://reviews.llvm.org/D26757 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-05 Thread bryant via lldb-commits
bryant added inline comments. Comment at: CMakeLists.txt:53 + --lldbLibDir=lib${LLVM_LIBDIR_SUFFIX} + ${FINISH_EXTRA_ARGS} +VERBATIM The indentation here could match the above. https://reviews.llvm.org/D26757 _

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-05 Thread bryant via lldb-commits
bryant added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:222 +) +logging.info("running swig with: %r", command) ldrumm wrote: > bryant wrote: > > You can reduce diff noise by limiting your changes to removing the %s. So, > > >

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-05 Thread bryant via lldb-commits
bryant added inline comments. Comment at: CMakeLists.txt:46 +COMMAND + ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/finishSwigWrapperClasses.py + --srcRoot=${LLDB_SOURCE_DIR} You can reduce diff noise by leaving format

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-29 Thread Enrico Granata via Phabricator via lldb-commits
granata.enrico resigned from this revision. granata.enrico removed a reviewer: granata.enrico. granata.enrico added a comment. I am not an Apple employee working on LLDB anymore https://reviews.llvm.org/D26757 ___ lldb-commits mailing list lldb-comm

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-29 Thread Luke Drummond via Phabricator via lldb-commits
ldrumm added a subscriber: lldb-commits. ldrumm updated this revision to Diff 79578. ldrumm added a comment. Addressed some unwanted whitespace changes as suggested by @bryant; use `os.dir.curdir` as instead of `.` https://reviews.llvm.org/D26757 Files: CMakeLists.txt scripts/CMakeLists.tx

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Chris Bieneman via lldb-commits
beanz added a comment. The CMake all LGTM. https://reviews.llvm.org/D26757 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:222 +) +logging.info("running swig with: %r", command) bryant wrote: > ldrumm wrote: > > bryant wrote: > > > You can reduce diff noise by limiting your changes to removin

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm added inline comments. Comment at: scripts/CMakeLists.txt:38 + COMMAND +${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/prepare_bindings.py + ${framework_arg} bryant wrote: > Move this back up. Will do https://reviews.llvm.org/D26757 __

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:222 +) +logging.info("running swig with: %r", command) bryant wrote: > You can reduce diff noise by limiting your changes to removing the %s. So, > > ```python > # B

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm added inline comments. Comment at: CMakeLists.txt:46 +COMMAND + ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/finishSwigWrapperClasses.py + --srcRoot=${LLDB_SOURCE_DIR} bryant wrote: > You can reduce diff noise b

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:229 stderr=subprocess.PIPE, -shell=True) +) # Wait for SWIG process to terminate bryant wrote: > ldrumm wrote: > > granata.enrico wrote: > > > This worrie

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:229 stderr=subprocess.PIPE, -shell=True) +) # Wait for SWIG process to terminate granata.enrico wrote: > This worries me a little bit.. Are we sure we are

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Enrico Granata via lldb-commits
granata.enrico added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:229 stderr=subprocess.PIPE, -shell=True) +) # Wait for SWIG process to terminate This worries me a little bit.. Are we sure we are not in any way

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Enrico Granata via lldb-commits
granata.enrico added a reviewer: beanz. granata.enrico added a comment. Chris, can you take a look at this? I am far from a CMake expert https://reviews.llvm.org/D26757 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-11-16 Thread Luke Drummond via lldb-commits
ldrumm created this revision. ldrumm added reviewers: zturner, granata.enrico. ldrumm added a subscriber: LLDB. Herald added a subscriber: mgorny. A combination of broken escaping in CMake and in the python swig generation scripts meant that the swig generation step would fail whenever there were