[llvm-commits] CVS: llvm/lib/Support/ToolRunner.cpp
Reid Spencer
reid at x10sys.com
Mon Nov 29 04:40:32 PST 2004
Changes in directory llvm/lib/Support:
ToolRunner.cpp updated: 1.32 -> 1.33
---
Log message:
Shared library extension is now in LTDL_SHLIB_EXT
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.32 llvm/lib/Support/ToolRunner.cpp:1.33
--- llvm/lib/Support/ToolRunner.cpp:1.32 Mon Nov 8 22:01:18 2004
+++ llvm/lib/Support/ToolRunner.cpp Mon Nov 29 06:40:21 2004
@@ -399,7 +399,7 @@
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(),
More information about the llvm-commits
mailing list