Home | History | Annotate | Download | only in Python

Lines Matching refs:so

6 # and use the lldb module, there must be two files, lldb.py and _lldb.so, that
8 # C++ file. _lldb.so is actually a symlink file that points to the
16 # This shell script creates the _lldb.so symlink in the appropriate place,
25 # PYTHON_INSTALL_DIR is where non-Darwin systems want to put the .py and .so
26 # files so that Python can find them automatically.
38 # Note, at present iOS doesn't have Python, so if you're building for iOS be sure to
71 SOEXT=".so"
79 # We are being built by Xcode, so all the lldb Python files can go
97 # We are being built by LLVM, so use the PYTHON_INSTALL_DIR argument,
149 if [ ! -L "${framework_python_dir}/_lldb.so" ]
153 echo "Creating symlink for _lldb.so"
158 ln -s "../../../LLDB" _lldb.so
160 ln -s "../../../liblldb${SOEXT}" _lldb.so
165 echo "${framework_python_dir}/_lldb.so already exists."