summaryrefslogtreecommitdiff
path: root/tools/llvm-ld/llvm-ld.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-06-15 12:01:16 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-06-15 12:01:16 +0000
commit5b90a7296cdf70e5b6eca9edf28fcda74f4551bf (patch)
tree9b0cdcf7512c38ded8b4990854de0345ea626327 /tools/llvm-ld/llvm-ld.cpp
parentf1844d2f58d3c6ea4e99329450bb46c0f054b232 (diff)
Append "exe" suffix to executable files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52285 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld/llvm-ld.cpp')
-rw-r--r--tools/llvm-ld/llvm-ld.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp
index 6657c7c7fd2..f15281dffdc 100644
--- a/tools/llvm-ld/llvm-ld.cpp
+++ b/tools/llvm-ld/llvm-ld.cpp
@@ -403,7 +403,11 @@ static void EmitShellScript(char **argv) {
if (llvmstub.isEmpty())
PrintAndExit("Could not find llvm-stub.exe executable!");
- if (0 != sys::CopyFile(sys::Path(OutputFilename), llvmstub, &ErrMsg))
+ sys::Path OutPath(OutputFilename);
+ if (OutPath.getSuffix() != "exe")
+ OutPath.appendSuffix("exe");
+
+ if (0 != sys::CopyFile(OutPath, llvmstub, &ErrMsg))
PrintAndExit(ErrMsg);
return;
@@ -532,6 +536,12 @@ int main(int argc, char **argv, char **envp) {
// Generate the bitcode for the optimized module.
std::string RealBitcodeOutput = OutputFilename;
+
+#if defined(_WIN32) || defined(__CYGWIN__)
+ if (!LinkAsLibrary && sys::Path(OutputFilename).getSuffix() != "exe")
+ RealBitcodeOutput += ".exe";
+#endif
+
if (!LinkAsLibrary) RealBitcodeOutput += ".bc";
GenerateBitcode(Composite.get(), RealBitcodeOutput);