[LLVMbugs] [Bug 23666] New: buildSwigWrapperClasses.py

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Tue May 26 15:49:13 PDT 2015


https://llvm.org/bugs/show_bug.cgi?id=23666

            Bug ID: 23666
           Summary: buildSwigWrapperClasses.py
           Product: Build scripts
           Version: trunk
          Hardware: Macintosh
                OS: MacOS X
            Status: NEW
          Severity: normal
          Priority: P
         Component: cmake
          Assignee: unassignedbugs at nondot.org
          Reporter: q at crypto.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

CMake recursively goes into each directory in /scripts and looks for a way to
build the SWIG language associated with it. 

[ 78%] Python script building LLDB Python wrapper
Program error: Executing '.svn' build script failed: Unable to locate the SWIG
script file 'buildSwig.svn.py' in
'/home/vagrant/progAnalysis/llvm-svn/tools/lldb/scripts/.svn'. Is it a script
directory? (-9)

I fixed this by adding ".svn" to the 'listDirs.remove()' like so: 

283     # Skip the directory that contains the interface files.
284     listDirs.remove('interface')
285     listDirs.remove('.svn')

Should probably do this globally, but seems to be the only place this happens
from what I can tell. I'm currently on Revision: 238174 building from source. 

Thanks,

-- q

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20150526/ebff49d1/attachment.html>


More information about the llvm-bugs mailing list