[llvm-commits] [llvm] r52285 - /llvm/trunk/tools/llvm-ld/llvm-ld.cpp
Argiris Kirtzidis
akyrtzi at gmail.com
Sun Jun 15 05:19:59 PDT 2008
>
> Hi, Argiris,
>
> >/ + sys::Path OutPath(OutputFilename);
> />/ + if (OutPath.getSuffix() != "exe")
> />/ + OutPath.appendSuffix("exe");
> /Are you sure this is needed for all platforms? Including non-windows
> ones?
>
Hi Anton,
The above lines are added between a
#if defined(_WIN32) || defined(__CYGWIN__)
..
#endif
block. Only affects windows of course.
It's the filename where llvm-stub.exe is copied to.
-Argiris
More information about the llvm-commits
mailing list