Skip to content
Snippets Groups Projects
Commit bbc5260c authored by sof's avatar sof
Browse files

[project @ 2000-03-14 01:57:18 by sof]

mingw32: do as for cygwin platforms & default the name of the generated
binary to main.exe if -o <...> isn't given.
parent 5ab9090d
No related merge requests found
......@@ -1860,7 +1860,8 @@ sub runLinker
local($lnkr) = ( $Lnkr ) ? $Lnkr : $CcRegd;
if ( ($Specific_output_file eq '') &&
($TargetPlatform eq 'i386-unknown-cygwin32') ) {
( ($TargetPlatform eq 'i386-unknown-cygwin32') ||
($TargetPlatform eq 'i386-unknown-mingw32')) ) {
$Specific_output_file = 'main.exe';
print STDERR "Output file not specified, defaulting to \"main.exe\"\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment