Author: greatlrd
Date: Fri Feb 2 16:02:17 2007
New Revision: 25698
URL:
http://svn.reactos.org/svn/reactos?rev=25698&view=rev
Log:
part 2/2 adding a new value OPTIMIZE, easy way to enable diffent optimze level do not
chamge it if u do not known what u doing
Modified:
trunk/reactos/ReactOS.rbuild
Modified: trunk/reactos/ReactOS.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ReactOS.rbuild?rev=25698&a…
==============================================================================
--- trunk/reactos/ReactOS.rbuild (original)
+++ trunk/reactos/ReactOS.rbuild Fri Feb 2 16:02:17 2007
@@ -26,12 +26,31 @@
</if>
<if property="GDB" value="0">
- <compilerflag>-Os</compilerflag>
- <compilerflag>-Wno-strict-aliasing</compilerflag>
- <compilerflag>-ftracer</compilerflag>
- <compilerflag>-momit-leaf-frame-pointer</compilerflag>
- <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
+ <if property="OPTIMIZE" value="1">
+ <compilerflag>-Os</compilerflag>
+ <compilerflag>-Wno-strict-aliasing</compilerflag>
+ <compilerflag>-ftracer</compilerflag>
+ <compilerflag>-momit-leaf-frame-pointer</compilerflag>
+ <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
+ </if>
+ <if property="OPTIMIZE" value="2">
+ <compilerflag>-Os</compilerflag>
+ <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
+ </if>
+ <if property="OPTIMIZE" value="3">
+ <compilerflag>-O1</compilerflag>
+ <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
+ </if>
+ <if property="OPTIMIZE" value="4">
+ <compilerflag>-O2</compilerflag>
+ <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
+ </if>
+ <if property="OPTIMIZE" value="5">
+ <compilerflag>-O3</compilerflag>
+ <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
+ </if>
</if>
+
<compilerflag>-Wpointer-arith</compilerflag>
<linkerflag>-enable-stdcall-fixup</linkerflag>