-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdmod-cfg.mk
More file actions
87 lines (60 loc) · 1.56 KB
/
Copy pathdmod-cfg.mk
File metadata and controls
87 lines (60 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
ifeq ($(ON),)
ON=1
endif
ifeq ($(OFF),)
OFF=0
endif
# Use standard library
DMOD_USE_STDLIB=ON
# Use getenv function
DMOD_USE_GETENV=ON
# Use environ global variable for environment iteration
DMOD_USE_ENVIRON=ON
# Use stdio library
DMOD_USE_STDIO=ON
# Use assert function
DMOD_USE_ASSERT=ON
# Use pthread library
DMOD_USE_PTHREAD=ON
# Use memory management functions
DMOD_USE_MMAN=ON
# Use aligned allocation
DMOD_USE_ALIGNED_ALLOC=ON
# Use aligned malloc mock if aligned allocation is not available
DMOD_USE_ALIGNED_MALLOC_MOCK=OFF
# Use realloc function
DMOD_USE_REALLOC=ON
# Use FastLZ compression library
DMOD_USE_FASTLZ=ON
# Maximum number of modules
DMOD_MAX_MODULES=30
# Maximum number of required modules
DMOD_MAX_REQUIRED_MODULES=10
# Mode of the system
DMOD_MODE="DMOD_SYSTEM"
# Major version of your system
DMOD_SYSTEM_VERSION_MAJOR=0
# Minor version of your system
DMOD_SYSTEM_VERSION_MINOR=1
# Build tests
DMOD_BUILD_TESTS=ON
# Build examples
DMOD_BUILD_EXAMPLES=ON
# Build tools
DMOD_BUILD_TOOLS=ON
# Build templates
DMOD_BUILD_TEMPLATES=ON
# Use exceptions
DMOD_USE_EXCEPTIONS=OFF
# Directory for DMFC files
DMOD_DMFC_DIR=${DMOD_BUILD_DIR}/dmfc
# Directory for DMF files
DMOD_DMF_DIR=${DMOD_BUILD_DIR}/dmf
# Path to the default repository inside the system
DMOD_REPO_DIR=${DMOD_DMF_DIR}
# Paths to the repositories inside the system in an array
DMOD_REPO_PATHS=${DMOD_DMF_DIR}${DMOD_ARRAY_SEP}${DMOD_DMFC_DIR}
# Name of the target cpu (if empty, the target is generic)
DMOD_CPU_NAME=""
# Name of the tools configuration
DMOD_TOOLS_NAME="arch/x86_64"