forked from hackndev/zinc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
188 lines (161 loc) · 4.8 KB
/
Rakefile
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
load 'support/rake.rb'
TOOLCHAIN = 'arm-none-eabi-'
RUSTC = 'rustc'
Context.create(__FILE__, ENV['PLATFORM'])
provide_stdlibs
# collect-all task for tests
desc "Run tests"
task :test
# external dependencies
compile_rust :shiny_crate, {
source: 'thirdparty/shiny/src/lib.rs'.in_root,
produce: 'thirdparty/shiny/src/lib.rs'.in_root.as_rlib.in_build,
out_dir: true,
build_for: :host,
}
compile_rust :hamcrest_crate, {
source: 'thirdparty/hamcrest-rust/src/hamcrest/lib.rs'.in_root,
produce: 'thirdparty/hamcrest-rust/src/hamcrest/lib.rs'.in_root.as_rlib.in_build,
out_dir: true,
build_for: :host,
do_not_collect_rust_deps: true,
}
# cross-compiled librlibc
compile_rust :rlibc_crate, {
source: 'thirdparty/librlibc/lib.rs'.in_root,
produce: 'thirdparty/librlibc/lib.rs'.in_root.as_rlib.in_build,
out_dir: true,
recompile_on: :triple,
}
# cross-compiled libcore
compile_rust :core_crate, {
source: 'thirdparty/libcore/lib.rs'.in_root,
produce: 'thirdparty/libcore/lib.rs'.in_root.as_rlib.in_build,
out_dir: true,
recompile_on: :triple,
}
# ioreg
compile_rust :ioreg_crate, {
source: 'ioreg/ioreg.rs'.in_source,
produce: 'ioreg/ioreg.rs'.in_source.as_rlib.in_build,
out_dir: true,
build_for: :host,
}
compile_rust :macro_ioreg, {
source: 'macro/ioreg.rs'.in_source,
deps: [:ioreg_crate],
produce: 'macro/ioreg.rs'.in_source.as_dylib.in_build,
out_dir: true,
build_for: :host,
}
rust_tests :ioreg_test, {
source: 'ioreg/test.rs'.in_source,
deps: [:core_crate, :macro_ioreg, :shiny_crate],
produce: 'ioreg_test'.in_build,
}
# zinc crate
compile_rust :zinc_crate, {
source: 'zinc/lib.rs'.in_source,
deps: [:core_crate, :rlibc_crate, :macro_ioreg],
produce: 'zinc/lib.rs'.in_source.as_rlib.in_build,
out_dir: true,
recompile_on: [:triple, :platform],
}
# zinc isr crate
compile_rust :zinc_isr, {
source: 'zinc/hal/isr.rs'.in_source,
deps: :core_crate,
produce: 'isr.o'.in_intermediate,
recompile_on: [:triple],
}
# zinc scheduler assembly
# TODO(farcaller): broken until implemented in PT.
# compile_c :zinc_isr_sched, {
# source: 'hal/cortex_m3/sched.S'.in_source,
# produce: 'isr_sched.o'.in_intermediate,
# recompile_on: [:triple],
# }
# platform tree
compile_rust :platformtree_crate, {
source: 'platformtree/platformtree.rs'.in_source,
produce: 'platformtree/platformtree.rs'.in_source.as_rlib.in_build,
out_dir: true,
build_for: :host,
optimize: 0,
}
rust_tests :platformtree_test, {
source: 'platformtree/platformtree.rs'.in_source,
deps: :hamcrest_crate,
produce: 'platformtree_test'.in_build,
}
# zinc test
rust_tests :zinc_test, {
source: 'zinc/lib.rs'.in_source,
deps: [:core_crate, :macro_ioreg, :hamcrest_crate, :shiny_crate],
produce: 'zinc_test'.in_build,
recompile_on: [:platform],
build_for: :host,
}
# macros
compile_rust :macro_platformtree, {
source: 'macro/platformtree.rs'.in_source,
deps: [:platformtree_crate],
produce: 'macro/platformtree.rs'.in_source.as_dylib.in_build,
out_dir: true,
build_for: :host,
optimize: 0,
}
desc "Build API documentation"
task build_docs: [:build_docs_html]
task build_docs_html: [] do |t|
['src/zinc/lib.rs', 'src/platformtree/platformtree.rs', 'src/ioreg/ioreg.rs'].each do |f|
build = Context.instance.build_dir
sh ("rustdoc -w html -o #{build}/doc -L #{build} " \
+ f + ' ' + :config_flags.in_env.join(' '))
end
end
app_tasks = Context.instance.applications.map do |a|
compile_rust "app_#{a}".to_sym, {
source: "apps/app_#{a}.rs".in_root,
deps: [
:zinc_crate,
:core_crate,
:macro_platformtree,
],
produce: "app_#{a}.o".in_intermediate(a),
recompile_on: [:triple, :platform],
}
link_binary "app_#{a}_elf".to_sym, {
script: 'layout.ld'.in_platform,
deps: ["app_#{a}".to_sym, :zinc_isr],
# TODO(farcaller): broken until implemented in PT.
# (features.include?(:multitasking) ? [:zinc_isr_sched] : []),
produce: "app_#{a}.elf".in_build,
}
t_bin = make_binary "app_#{a}_bin".to_sym, {
source: "app_#{a}.elf".in_build,
produce: "app_#{a}.bin".in_build,
}
t_lst = listing "app_#{a}_lst".to_sym, {
source: "app_#{a}.elf".in_build,
produce: "app_#{a}.lst".in_build,
}
t_size = report_size "app_#{a}_size".to_sym, {
source: "app_#{a}.elf".in_build,
}
desc "Build application #{a}"
task "build_#{a}".to_sym => [t_bin.name, t_lst.name, t_size.name]
end
desc "Build all applications"
case ENV['PLATFORM']
when 'k20'
task :build_all => [:build_blink_k20, :build_blink_k20_isr]
when 'stm32f4'
task :build_all => [:build_blink_stm32f4]
when 'lpc17xx'
task :build_all => [:build_empty, :build_blink]
when 'tiva_c'
task :build_all => [:build_blink_tiva_c, :build_uart_tiva_c]
else
puts "I don't know what to build for this platform."
end