mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Append "exe" suffix to executable files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52285 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f1844d2f58
commit
5b90a7296c
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user