diff options
Diffstat (limited to 'lldb/scripts/Python')
-rwxr-xr-x | lldb/scripts/Python/finish-swig-Python-LLDB.sh | 10 | ||||
-rw-r--r-- | lldb/scripts/Python/finishSwigPythonLLDB.py | 16 |
2 files changed, 13 insertions, 13 deletions
diff --git a/lldb/scripts/Python/finish-swig-Python-LLDB.sh b/lldb/scripts/Python/finish-swig-Python-LLDB.sh index eb8ec11d9da..92b99181c7c 100755 --- a/lldb/scripts/Python/finish-swig-Python-LLDB.sh +++ b/lldb/scripts/Python/finish-swig-Python-LLDB.sh @@ -188,23 +188,23 @@ then fi fi -# Make symlink for argdumper on any platform +# Make symlink for lldb-argdumper on any platform if [ $MakefileCalled -ne 0 ] then # We are being built by CMake - if [ ! -L "${framework_python_dir}/argdumper" ] + if [ ! -L "${framework_python_dir}/lldb-argdumper" ] then if [ $Debug -eq 1 ] then - echo "Creating symlink for argdumper" + echo "Creating symlink for lldb-argdumper" fi cd "${framework_python_dir}" - ln -s "../../../../bin/argdumper" argdumper + ln -s "../../../../bin/lldb-argdumper" lldb-argdumper else if [ $Debug -eq 1 ] then - echo "${framework_python_dir}/argdumper already exists." + echo "${framework_python_dir}/lldb-argdumper already exists." fi fi fi diff --git a/lldb/scripts/Python/finishSwigPythonLLDB.py b/lldb/scripts/Python/finishSwigPythonLLDB.py index a4fa3b26935..bd49adee136 100644 --- a/lldb/scripts/Python/finishSwigPythonLLDB.py +++ b/lldb/scripts/Python/finishSwigPythonLLDB.py @@ -411,16 +411,16 @@ def make_symlink_darwin_debug( vDictArgs, vstrFrameworkPythonDir, vstrDarwinDebu return (bOk, strErrMsg); #++--------------------------------------------------------------------------- -# Details: Make the symbolic link to the argdumper. +# Details: Make the symbolic link to the lldb-argdumper. # Args: vDictArgs - (R) Program input parameters. # vstrFrameworkPythonDir - (R) Python framework directory. -# vstrArgdumperFileName - (R) File name for argdumper. +# vstrArgdumperFileName - (R) File name for lldb-argdumper. # Returns: Bool - True = function success, False = failure. # Str - Error description on task failure. # Throws: None. #-- -def make_symlink_argdumper( vDictArgs, vstrFrameworkPythonDir, vstrArgdumperFileName ): - dbg = utilsDebug.CDebugFnVerbose( "Python script make_symlink_argdumper()" ); +def make_symlink_lldb_argdumper( vDictArgs, vstrFrameworkPythonDir, vstrArgdumperFileName ): + dbg = utilsDebug.CDebugFnVerbose( "Python script make_symlink_lldb_argdumper()" ); bOk = True; strErrMsg = ""; strTarget = vstrArgdumperFileName; @@ -437,7 +437,7 @@ def make_symlink_argdumper( vDictArgs, vstrFrameworkPythonDir, vstrArgdumperFile strExeFileExtn = ""; if eOSType == utilsOsType.EnumOsType.Windows: strExeFileExtn = ".exe"; - strSrc = os.path.join("bin", "argdumper" + strExeFileExtn); + strSrc = os.path.join("bin", "lldb-argdumper" + strExeFileExtn); bOk, strErrMsg = make_symlink( vDictArgs, vstrFrameworkPythonDir, strSrc, strTarget ); @@ -472,10 +472,10 @@ def create_symlinks( vDictArgs, vstrFrameworkPythonDir ): vstrFrameworkPythonDir, strDarwinDebugFileName ); - # Make symlink for argdumper - strArgdumperFileName = "argdumper" + # Make symlink for lldb-argdumper + strArgdumperFileName = "lldb-argdumper" if bOk: - bOk, strErrMsg = make_symlink_argdumper( vDictArgs, + bOk, strErrMsg = make_symlink_lldb_argdumper( vDictArgs, vstrFrameworkPythonDir, strArgdumperFileName ); |