mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-07 10:34:54 -06:00
ide: MSC15 builder fix
git-svn-id: svn://ultimatepp.org/upp/trunk@8940 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
4a4c510d1e
commit
6814515e33
1 changed files with 4 additions and 2 deletions
|
|
@ -644,9 +644,11 @@ bool MscBuilder::Link(const Vector<String>& linkfile, const String& linkoptions,
|
|||
link << " -subsystem:windowsce,4.20 /ARMPADCODE -NODEFAULTLIB:\"oldnames.lib\" ";
|
||||
else
|
||||
if(HasFlag("GUI") || IsMscArm())
|
||||
link << (HasFlag("WIN32") ? " -subsystem:windows,5.01" : " -subsystem:windowsce"); //,5.01 needed to support WindowsXP
|
||||
link << " -subsystem:windows";
|
||||
else
|
||||
link << " -subsystem:console,5.01"; //,5.01 needed to support WindowsXP
|
||||
link << " -subsystem:console";
|
||||
if(!IsMsc64())
|
||||
link << ",5.01"; //,5.01 needed to support WindowsXP
|
||||
if(createmap)
|
||||
link << " -MAP";
|
||||
if(HasFlag("DLL"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue