summaryrefslogtreecommitdiffstats
path: root/lldb/scripts/Python/finishSwigPythonLLDB.py
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2015-10-29 05:07:12 +0000
committerTodd Fiala <todd.fiala@gmail.com>2015-10-29 05:07:12 +0000
commit15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86 (patch)
treea80353ceaea4d5405bfa49cb0e8731057589b59d /lldb/scripts/Python/finishSwigPythonLLDB.py
parentf2f194455fba1308f30545c6dce4854f207f83b3 (diff)
downloadbcm5719-llvm-15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86.tar.gz
bcm5719-llvm-15c0fbaae150725cbf9c8d1a4cb2f2a90f23de86.zip
Rename argdumper to lldb-argdumper
http://reviews.llvm.org/D14169 llvm-svn: 251616
Diffstat (limited to 'lldb/scripts/Python/finishSwigPythonLLDB.py')
-rw-r--r--lldb/scripts/Python/finishSwigPythonLLDB.py16
1 files changed, 8 insertions, 8 deletions
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 );
OpenPOWER on IntegriCloud