|
From: <Or...@us...> - 2009-01-17 09:16:46
|
Revision: 456
http://acmcontester.svn.sourceforge.net/acmcontester/?rev=456&view=rev
Author: Oracle_
Date: 2009-01-17 09:16:35 +0000 (Sat, 17 Jan 2009)
Log Message:
-----------
Added optimization to C++ compiler.
Modified Paths:
--------------
ACMServer/branches/Version_2/Server/CompilationUnit.pas
Modified: ACMServer/branches/Version_2/Server/CompilationUnit.pas
===================================================================
--- ACMServer/branches/Version_2/Server/CompilationUnit.pas 2009-01-16 23:43:35 UTC (rev 455)
+++ ACMServer/branches/Version_2/Server/CompilationUnit.pas 2009-01-17 09:16:35 UTC (rev 456)
@@ -109,7 +109,7 @@
Sleep(100);
- result := Run(ExtractShortPathName(ProgramPath+'Compillers\vc6\cl.exe')+' -I '+ExtractShortPathName(ProgramPath+'Compillers\vc6 ')+FilePath+ ' /EHsc -link -LIBPATH:'+ExtractShortPathName(ProgramPath+'Compillers\vc6'),
+ result := Run(ExtractShortPathName(ProgramPath+'Compillers\vc6\cl.exe')+' -I '+ExtractShortPathName(ProgramPath+'Compillers\vc6 ')+FilePath+ ' /O1 /EHsc -link -LIBPATH:'+ExtractShortPathName(ProgramPath+'Compillers\vc6'),
FilePath,ExtractFilePath(FilePath)+'compile_res.txt', ExtractFilePath(FilePath),
MaxCompilationTime,50000000,70000,tu,mu);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|