aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/ToolRunner.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-29 12:40:21 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-29 12:40:21 +0000
commita564845f838cb9e56e6df5106ad57d91552e6568 (patch)
treebd35d96638e83507026f620e4367c135095886b2 /lib/Support/ToolRunner.cpp
parent29ae1777c186ff37fde719210c21ed31f5142adc (diff)
Shared library extension is now in LTDL_SHLIB_EXT
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18353 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/ToolRunner.cpp')
-rw-r--r--lib/Support/ToolRunner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/ToolRunner.cpp b/lib/Support/ToolRunner.cpp
index fcbb3c15b5..89f1a2a6fd 100644
--- a/lib/Support/ToolRunner.cpp
+++ b/lib/Support/ToolRunner.cpp
@@ -399,7 +399,7 @@ int GCC::ExecuteProgram(const std::string &ProgramFile,
int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType,
std::string &OutputFile) {
- OutputFile = getUniqueFilename(InputFile+SHLIBEXT);
+ OutputFile = getUniqueFilename(InputFile+LTDL_SHLIB_EXT);
// Compile the C/asm file into a shared object
const char* GCCArgs[] = {
GCCPath.c_str(),