* Sync up to trunk head (r64377).
[reactos.git] / cmake / config-arm.cmake
1
2 set(SARCH "omap3-zoom2" CACHE STRING
3 "Sub-architecture (board) to build for. Specify one of:
4 kurobox versatile omap3-zoom2 omap3-beagle")
5
6 set(OARCH "armv7-a" CACHE STRING
7 "Generate instructions for this CPU type. Specify one of:
8 armv5te armv7-a")
9
10 set (OPTIMIZE "1" CACHE STRING
11 "What level of optimization to use.
12 0 = off
13 1 = Default option, optimize for size (-Os) with some additional options
14 2 = Optimize for size (-Os)
15 3 = Optimize debugging experience (-Og)
16 4 = Optimize (-O1)
17 5 = Optimize even more (-O2)
18 6 = Optimize yet more (-O3)
19 7 = Disregard strict standards compliance (-Ofast)")
20
21 set(LTCG FALSE CACHE BOOL
22 "Whether to build with link-time code generation")
23
24 set(DBG TRUE CACHE BOOL
25 "Whether to compile for debugging.")
26
27 set(KDBG FALSE CACHE BOOL
28 "Whether to compile in the integrated kernel debugger.")
29
30 set(GDB FALSE CACHE BOOL
31 "Whether to compile for debugging with GDB.
32 If you don't use GDB, don't enable this.")
33
34 set(_WINKD_ TRUE CACHE BOOL
35 "Whether to compile with the KD protocol.")
36
37 set(_ELF_ FALSE CACHE BOOL
38 "Whether to compile support for ELF files.
39 Do not enable unless you know what you're doing.")
40
41 set(NSWPAT FALSE CACHE BOOL
42 "Whether to compile apps/libs with features covered software patents or not.
43 If you live in a country where software patents are valid/apply, don't
44 enable this (except they/you purchased a license from the patent owner).
45 This settings is disabled (0) by default.")
46
47 set(BUILD_MP TRUE CACHE BOOL
48 "Whether to compile the multi processor versions for ntoskrnl and hal.")
49
50 set(NEWSPRINTF FALSE CACHE BOOL
51 "Whether to compile the new sprintf.")