Fixed build by including the correct header this time!
[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 <define name="USE_COMPILER_EXCEPTIONS" />
18
19 <property name="NTOSKRNL_SHARED" value="-file-alignment=0x1000 -section-alignment=0x1000 -shared"/>
20
21 <if property="OPTIMIZE" value="1">
22 <compilerflag>-Os</compilerflag>
23 <compilerflag>-ftracer</compilerflag>
24 <compilerflag>-momit-leaf-frame-pointer</compilerflag>
25 </if>
26 <if property="OPTIMIZE" value="2">
27 <compilerflag>-Os</compilerflag>
28 </if>
29 <if property="OPTIMIZE" value="3">
30 <compilerflag>-O1</compilerflag>
31 </if>
32 <if property="OPTIMIZE" value="4">
33 <compilerflag>-O2</compilerflag>
34 </if>
35 <if property="OPTIMIZE" value="5">
36 <compilerflag>-O3</compilerflag>
37 </if>
38
39 <compilerflag>-mpreferred-stack-boundary=2</compilerflag>
40 <compilerflag>-fno-strict-aliasing</compilerflag>
41 <compilerflag>-Wno-strict-aliasing</compilerflag>
42 <compilerflag>-Wpointer-arith</compilerflag>
43 <!-- compilerflag>-H</compilerflag> enable this for header traces -->
44 <linkerflag>-disable-stdcall-fixup</linkerflag>
45
46 </project>