Sync to trunk r38250
[reactos.git] / reactos / ReactOS-i386.rbuild
1 <?xml version="1.0"?>
2 <!DOCTYPE project SYSTEM "tools/rbuild/project.dtd">
3 <project name="ReactOS" makefile="makefile.auto" xmlns:xi="http://www.w3.org/2001/XInclude">
4 <xi:include href="config.rbuild">
5 <xi:fallback>
6 <xi:include href="config.template.rbuild" />
7 </xi:fallback>
8 </xi:include>
9
10 <xi:include href="ReactOS-generic.rbuild" />
11
12 <define name="_M_IX86" />
13 <define name="_X86_" />
14 <define name="__i386__" />
15 <define name="TARGET_i386" host="true" />
16
17 <property name="NTOSKRNL_SHARED" value="-file-alignment=0x1000 -section-alignment=0x1000 -shared"/>
18 <property name="PLATFORM" value="PC"/>
19
20 <if property="OPTIMIZE" value="1">
21 <compilerflag>-Os</compilerflag>
22 <compilerflag>-ftracer</compilerflag>
23 <compilerflag>-momit-leaf-frame-pointer</compilerflag>
24 </if>
25 <if property="OPTIMIZE" value="2">
26 <compilerflag>-Os</compilerflag>
27 </if>
28 <if property="OPTIMIZE" value="3">
29 <compilerflag>-O1</compilerflag>
30 </if>
31 <if property="OPTIMIZE" value="4">
32 <compilerflag>-O2</compilerflag>
33 </if>
34 <if property="OPTIMIZE" value="5">
35 <compilerflag>-O3</compilerflag>
36 </if>
37
38 <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
39 <compilerflag>-fno-strict-aliasing</compilerflag>
40 <compilerflag>-Wno-strict-aliasing</compilerflag>
41 <compilerflag>-Wpointer-arith</compilerflag>
42 <linkerflag>-disable-stdcall-fixup</linkerflag>
43
44 </project>