[WLANCONF]
[reactos.git] / config-arm.template.rbuild
1 <?xml version="1.0"?>
2 <!DOCTYPE group SYSTEM "tools/rbuild/project.dtd">
3 <group>
4
5 <!--
6 This file is a template used as a starting point for compile-time
7 configuration of ReactOS. Make a copy of this file and name it config.rbuild.
8 Then change the options in config.rbuild. If you don't have a config.rbuild file,
9 then the defaults in this file, config.template.rbuild, will be used instead.
10
11 Boolean options can obtain the values 0 (disabled) or 1 (enabled). String
12 options can obtain any value specified in the comment before it.
13 -->
14
15
16 <!--
17 Sub-architecture (board) to build for. Specify one of:
18 kurobox versatile omap3-zoom2 omap3-beagle
19
20 -->
21 <property name="SARCH" value="omap3-zoom2" />
22
23
24 <!--
25 Generate instructions for this CPU type. Specify one of:
26 armv5te armv7-a
27
28 See GCC manual for more CPU names.
29 -->
30 <property name="OARCH" value="armv7-a" />
31
32
33 <!--
34 Which CPU ReactOS should be optimized for. See GCC manual for CPU names.
35 -->
36 <property name="TUNE" value="" />
37
38
39 <!--
40 What level of optimisation to use.
41 0 = off (will not work)
42 1 = Default option, optimize for size (-Os) with some additional options
43 2 = -Os
44 3 = -O1
45 4 = -O2
46 5 = -O3
47 -->
48 <property name="OPTIMIZE" value="1" />
49
50
51 <!--
52 Whether to compile in the integrated kernel debugger.
53 -->
54 <property name="KDBG" value="0" />
55
56
57 <!--
58 Whether to compile for debugging.
59 -->
60 <property name="DBG" value="1" />
61
62
63 <!--
64 Whether to compile for debugging with GDB. If you don't use GDB, don't
65 enable this.
66 -->
67 <property name="GDB" value="0" />
68
69
70 <!--
71 Whether to compile apps/libs with features covered software patents or not.
72 If you live in a country where software patents are valid/apply, don't
73 enable this (except they/you purchased a license from the patent owner).
74 This settings is disabled (0) by default.
75 -->
76 <property name="NSWPAT" value="0" />
77
78 <!--
79 Whether to compile with the KD protocol. This will disable support for KDBG
80 as well as rossym and symbol lookups, and allow WinDBG to connect to ReactOS.
81 This is currently not fully working, and requires kdcom from Windows 2003 or
82 TinyKRNL. Booting into debug mode with this flag enabled will result in a
83 failure to enter GUI mode. Do not enable unless you know what you're doing.
84 -->
85 <property name="_WINKD_" value="0" />
86
87 <!--
88 Whether to compile support for ELF files. Do not enable unless you know what
89 you're doing.
90 -->
91 <property name="_ELF_" value="0" />
92
93 <!--
94 Whether to compile the multi processor versions for ntoskrnl and hal.
95 -->
96 <property name="BUILD_MP" value="1" />
97
98 <!--
99 Whether to compile the new cache manager
100 -->
101 <property name="NEWCC" value="0" />
102
103 </group>