This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Makefile.toml
557 lines (498 loc) · 16.8 KB
/
Makefile.toml
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
env_scripts = [
'''
#!@duckscript
llvm_prefix = get_env LLVM_PREFIX
if is_empty "${llvm_prefix}"
data_home = get_env XDG_DATA_HOME
if is_empty "${data_home}"
home = get_env HOME
llvm_prefix = set "${home}/.local/share/llvm/firefly"
else
llvm_prefix = set "${data_home}/llvm/firefly"
end
end
if is_directory ${llvm_prefix}
set_env LLVM_PREFIX "${llvm_prefix}"
else
trigger_error "Unable to locate LLVM. Export LLVM_PREFIX and try again"
exit 1
end
set_env BUILD_FIREFLY false
task_name = get_env CARGO_MAKE_TASK
if eq "${task_name}" firefly
set_env BUILD_FIREFLY true
set_env CARGO_MAKE_CARGO_PACKAGE firefly
exit 0
elseif eq "${task_name}" default
set_env BUILD_FIREFLY true
set_env CARGO_MAKE_CARGO_PACKAGE firefly
exit 0
end
task_args = get_env CARGO_MAKE_TASK_ARGS
argv = split task_args ";"
argc = array_length ${argv}
indices = range 0 ${argc}
package = set ""
for i in ${indices}
item = array_get ${argv} ${i}
if eq "${item}" "-p"
j = calc ${i} + 1
package = array_get ${argv} ${j}
elseif eq "${item}" "--package"
j = calc ${i} + 1
package = array_get ${argv} ${j}
end
if "${package}"
set_env CARGO_MAKE_CARGO_PACKAGE "${package}"
if eq "${package}" firefly
set_env BUILD_FIREFLY true
end
exit 0
end
end
'''
]
[config]
default_to_workspace = false
skip_core_tasks = true
skip_git_env_info = true
modify_core_tasks = { private = true, namespace = "default" }
init_task = "init"
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
CARGO_MAKE_CARGO_VERBOSE_FLAGS = { source = "${CARGO_MAKE_CI}", default_value = "", mapping = { "true" = "--verbose" } }
CARGO_MAKE_RUST_SCRIPT_PROVIDER = "rust-script"
CARGO_MAKE_USE_WORKSPACE_PROFILE = true
CARGO_MAKE_CARGO_BUILD_TEST_FLAGS = "--no-fail-fast"
CARGO_TARGET_DIR = { value = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target", condition = { env_not_set = ["CARGO_TARGET_DIR"] } }
CARGO_MAKE_TOOLCHAIN_DEFAULT = { source = "${CARGO_MAKE_CI}", default_value = "nightly", mapping = { "true" = "nightly-2022-11-02", "false" = "nightly" } }
CARGO_MAKE_TOOLCHAIN = { value = "${CARGO_MAKE_TOOLCHAIN_DEFAULT}", condition = { env_not_set = ["CARGO_MAKE_TOOLCHAIN"] } }
BACKTRACE_DEFAULT = { source = "${CARGO_MAKE_CI}", mapping = { "true" = "1", "false" = "0" } }
RUST_BACKTRACE = { value = "${BACKTRACE_DEFAULT}", condition = { env_not_set = ["RUST_BACKTRACE"] } }
GECKODRIVER_VERSION = "0.27.0"
CHROMEDRIVER_VERSION = "85.0.4183.87"
FIREFLY_BUILD_PROFILE = { source = "${CARGO_MAKE_PROFILE}", default_value = "dev", mapping = { "development" = "dev", "production" = "release" } }
FIREFLY_BUILD_TYPE = { value = "static", condition = { env_not_set = ["FIREFLY_BUILD_TYPE"] } }
FIREFLY_BUILD_LTO = { source = "${FIREFLY_BUILD_PROFILE}", default_value = "false", mapping = { "dev" = "false", "release" = "true" } }
FIREFLY_LLVM_LTO = { source = "${FIREFLY_BUILD_LTO}", default_value = "OFF", mapping = { "false" = "OFF", "true" = "ON" } }
FIREFLY_BIN_DIR = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/bin"
FIREFLY_INSTALL_DIR = "${FIREFLY_BIN_DIR}/${CARGO_MAKE_RUST_TARGET_TRIPLE}"
LLVM_BUILD_STATIC = { source = "${FIREFLY_BUILD_TYPE}", default_value = "ON", mapping = { "dynamic" = "OFF", "static" = "ON" } }
LLVM_USE_LIBCXX = { source = "${CARGO_MAKE_RUST_TARGET_VENDOR}", default_value = "OFF", mapping = { "apple" = "ON" } }
LLVM_LINK_LLVM_DYLIB = { source = "${FIREFLY_BUILD_TYPE}", default_value = "OFF", mapping = { "dynamic" = "ON", "static" = "OFF" } }
LLVM_USE_SANITIZER = { source = "${SANITIZER}", default_value = "", mapping = { "address" = "Address", "memory" = "Memory" }, condition = { env_set = ["SANITIZER"] } }
[tasks.init]
run_task = "print-env"
[tasks.default]
category = "Build"
description = "Default task builds the compiler"
alias = "firefly"
[tasks.print-env]
category = "Tools"
run_task = [{ name = ["print-build-env", "print-ci-env", "print-rust-env", "print-cargo-env"] }]
[tasks.print-build-env]
private = true
script = [
'''
#!@duckscript
echo "*************************************"
echo "Build Environment:"
echo " Task: ${CARGO_MAKE_TASK}"
echo " Task Arguments: ${CARGO_MAKE_TASK_ARGS}"
echo " Command: ${CARGO_MAKE_COMMAND}"
echo " Working Directory: ${CARGO_MAKE_WORKING_DIRECTORY}"
echo " Target Directory: ${CARGO_TARGET_DIR}"
echo " Profile: ${FIREFLY_BUILD_PROFILE}"
echo " Build Type: ${FIREFLY_BUILD_TYPE}"
echo " LTO Enabled: ${FIREFLY_BUILD_LTO}"
echo " Bin Directory: ${FIREFLY_BIN_DIR}"
echo " Install Directory: ${FIREFLY_INSTALL_DIR}"
echo " Target Triple: ${CARGO_MAKE_RUST_TARGET_TRIPLE}"
echo ""
echo " RUST_BACKTRACE: ${RUST_BACKTRACE}"
echo " GECKODRIVER_VERSION: ${GECKODRIVER_VERSION}"
echo " CHROMEDRIVER_VERSION: ${CHROMEDRIVER_VERSION}"
echo " FIREFLY_LLVM_LTO: ${FIREFLY_LLVM_LTO}"
echo " LLVM_BUILD_STATIC: ${LLVM_BUILD_STATIC}"
echo " LLVM_USE_LIBCXX: ${LLVM_USE_LIBCXX}"
echo " LLVM_LINK_LLVM_DYLIB: ${LLVM_LINK_LLVM_DYLIB}"
echo " SANITIZER: ${SANITIZER}"
echo " LLVM_USE_SANITIZER: ${LLVM_USE_SANITIZER}"
echo "*************************************"
'''
]
[tasks.print-ci-env]
private = true
condition = { env = { "CARGO_MAKE_CI" = "true" } }
script = [
'''
#!@duckscript
echo "*************************************"
echo "CI:"
echo " CI: ${CARGO_MAKE_CI}"
echo " PR: ${CARGO_MAKE_PR}"
echo " Branch Name: ${CARGO_MAKE_CI_BRANCH_NAME}"
echo " CI Vendor: ${CARGO_MAKE_CI_VENDOR}"
echo "*************************************"
'''
]
[tasks.print-rust-env]
category = "Tools"
condition = { env_set = [ "CARGO_MAKE_RUST_CHANNEL" ] }
script = [
'''
#!@duckscript
echo "*************************************"
echo "Rust:"
echo " Version: ${CARGO_MAKE_RUST_VERSION}"
echo " Channel: ${CARGO_MAKE_RUST_CHANNEL}"
echo " Toolchain: ${CARGO_MAKE_TOOLCHAIN}"
echo " Target Arch: ${CARGO_MAKE_RUST_TARGET_ARCH}"
echo " Target Env: ${CARGO_MAKE_RUST_TARGET_ENV}"
echo " Target OS: ${CARGO_MAKE_RUST_TARGET_OS}"
echo " Pointer Width: ${CARGO_MAKE_RUST_TARGET_POINTER_WIDTH}"
echo " Target Triple: ${CARGO_MAKE_RUST_TARGET_TRIPLE}"
echo "*************************************"
'''
]
[tasks.print-cargo-env]
category = "Tools"
condition = { env_set = [ "CARGO_MAKE_CARGO_HOME" ] }
script = [
'''
#!@duckscript
echo "*************************************"
echo "Cargo:"
echo " Home: ${CARGO_MAKE_CARGO_HOME}"
echo " Profile: ${CARGO_MAKE_CARGO_PROFILE}"
echo "*************************************"
'''
]
[tasks.format]
category = "Development"
dependencies = ["format-rust", "format-cpp"]
[tasks.check-format]
description = "Runs cargo fmt to check appropriate code format."
category = "Test"
command = "cargo"
args = ["fmt", "--", "--check"]
dependencies = ["install-rustfmt"]
[tasks.format-rust]
category = "Development"
description = "Formats source code (Rust)"
command = "cargo"
args = ["fmt"]
dependencies = ["install-rustfmt"]
[tasks.format-cpp]
category = "Development"
description = "Formats source code (C/C++)"
script = ['''
#!@duckscript
result = which clang-format
if is_empty "${result}"
exit 1
end
cpp_files = glob_array "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/compiler/codegen_llvm/**/*.cpp"
h_files = glob_array "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/compiler/codegen_llvm/**/*.h"
files = array_concat ${cpp_files} ${h_files}
for file in ${files}
is_cached = contains "${file}" ".ccls-cache"
if not ${is_cached}
result = exec clang-format -i --style=file --verbose "${file}"
if ${result.code}
echo "${result.stderr}"
exit ${result.code}
end
end
end
''']
[tasks.install-rustfmt]
category = "Development"
description = "Installs cargo rustfmt plugin."
env.CFG_RELEASE = { value = "${CARGO_MAKE_RUST_VERSION}", condition = { env_not_set = ["CFG_RELEASE"] } }
env.CFG_RELEASE_CHANNEL = { value = "${CARGO_MAKE_RUST_CHANNEL}", condition = { env_not_set = ["CFG_RELEASE_CHANNEL"] } }
install_crate = { crate_name = "rustfmt-nightly", rustup_component_name = "rustfmt", binary = "rustfmt", test_arg = "--help" }
[tasks.bloat]
category = "Development"
description = "Run cargo-bloat"
command = "cargo"
args = ["bloat", "${@}"]
[tasks.clean]
category = "Build"
description = "Clean build artifacts"
command = "cargo"
args = ["clean"]
[tasks.test]
category = "Test"
description = "Runs all tests"
dependencies = ["test-rust", "test-lit", "test-cleanup"]
[tasks.test-rust]
category = "Test"
description = "Runs tests written in Rust"
env = { RUSTFLAGS = "-C link-args=-Wl,-rpath,${LLVM_PREFIX}/lib" }
command = "rustup"
args = ["run", "${CARGO_MAKE_TOOLCHAIN}", "cargo", "-Z", "extra-link-arg", "test", "@@remove-empty(CARGO_MAKE_CARGO_VERBOSE_FLAGS)", "@@split(CARGO_MAKE_CARGO_BUILD_TEST_FLAGS, )", "${@}"]
dependencies = [
"require-ninja",
"require-cmake",
]
[tasks.test-lit]
category = "Test"
description = "Runs file-based checks using lit"
env = { RUSTFLAGS = "-Z unstable-options -C link-args=-Wl,-rpath,${LLVM_PREFIX}/lib" }
command = "bin/firefly-make"
args = ["lit", "-t", "erl", "-t", "P", "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/test/lit"]
dependencies = [
"firefly",
]
[tasks.lit]
category = "Test"
description = "Invokes lit with the given arguments"
env = { RUSTFLAGS = "-Z unstable-options -C link-args=-Wl,-rpath,${LLVM_PREFIX}/lib" }
command = "bin/firefly-make"
args = ["lit", "${@}"]
dependencies = [
"firefly",
]
[tasks.test-cleanup]
private = true
#condition = { env = { CARGO_MAKE_CI = "true" } }
script = ['''
#!@duckscript
rm -r ${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/native_implemented/otp/tests/_build
''']
[tasks.rebuild]
command = "cargo"
category = "Build"
description = "Perform a clean build"
dependencies = ["clean", "build"]
[tasks.check-build]
category = "Build"
description = "Ensures code is formatted, builds firefly, and runs tests"
run_task = { name = ["check-format", "firefly", "test"] }
[tasks.check]
category = "Build"
description = "Runs cargo check"
condition = { env = {"BUILD_FIREFLY" = "false" } }
env = { RUSTFLAGS = "-C link-args=-Wl,-rpath,${LLVM_PREFIX}/lib" }
command = "rustup"
args = ["run", "${CARGO_MAKE_TOOLCHAIN}", "cargo", "-Z", "extra-link-arg", "check", "${@}"]
dependencies = [
"require-ninja",
"require-cmake",
]
[tasks.build]
category = "Build"
description = "Build a package"
condition = { env_set = ["CARGO_MAKE_CARGO_PACKAGE", "BUILD_FIREFLY"] }
run_task = [
{ name = "build-package", condition = { env = { "BUILD_FIREFLY" = "false" } } },
{ name = "firefly", condition = { env = { "BUILD_FIREFLY" = "true" } } }
]
[tasks.build-package]
private = true
description = "Runs cargo build"
category = "Build"
command = "rustup"
env = { RUSTFLAGS = "-C link-args=-Wl,-rpath,${LLVM_PREFIX}/lib" }
args = ["run", "${CARGO_MAKE_TOOLCHAIN}", "cargo", "-Z", "extra-link-arg", "build", "--", "@@remove-empty(CARGO_MAKE_CARGO_VERBOSE_FLAGS)", "${@}"]
dependencies = [
"require-ninja",
"require-cmake",
]
[tasks.firefly]
category = "Build"
description = "Builds the Firefly compiler"
condition = { env = { "BUILD_FIREFLY" = "true" } }
env = { RUSTFLAGS = "-Z unstable-options -C link-args=-Wl,-rpath,${LLVM_PREFIX}/lib", CARGO_TARGET_DIR = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target" }
command = "bin/firefly-make"
args = ["build", "@@remove-empty(CARGO_MAKE_CARGO_VERBOSE_FLAGS)"]
dependencies = [
"require-ninja",
"require-cmake",
"firefly-make",
"firefly-lld",
]
[tasks.firefly-make]
category = "Build"
description = "Builds the firefly-make helper"
command = "rustup"
env = { CARGO_TARGET_DIR = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/tools/firefly-make/target" }
args = ["run", "${CARGO_MAKE_TOOLCHAIN}", "cargo", "-Z", "unstable-options", "build", "--manifest-path", "tools/firefly-make/Cargo.toml", "--release", "--out-dir", "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/bin"]
[tasks.firefly-lld]
category = "Tools"
description = "Builds the firefly-lld wrapper"
command = "rustup"
env = { CARGO_TARGET_DIR = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/tools/firefly-make/target" }
args = ["run", "${CARGO_MAKE_TOOLCHAIN}", "cargo", "-Z", "unstable-options", "build", "--manifest-path", "tools/firefly-lld/Cargo.toml", "--release", "--out-dir", "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/target"]
[tasks.release]
category = "Release"
description = "Packages a distribution of the Firefly compiler"
command = "bin/firefly-make"
args = ["dist", "@@remove-empty(CARGO_MAKE_CARGO_VERBOSE_FLAGS)"]
dependencies = [
"firefly"
]
[tasks.require-ninja]
private = true
script = ['''
#!@duckscript
result = which ninja
if is_empty ${result}
trigger_error "Unable to locate ninja executable!"
exit 1
else
exit 0
end
''']
[tasks.require-cmake]
private = true
script = ['''
#!@duckscript
result = which cmake
if is_empty ${result}
trigger_error "Unable to locate cmake executable!"
exit 1
else
exit 0
end
''']
[tasks.install-wasm-target]
category = "Web"
description = "Install wasm32-unknown-unknown target"
command = "rustup"
args = ["target", "add", "--toolchain", "${CARGO_MAKE_TOOLCHAIN}", "wasm32-unknown-unknown"]
condition_script = ['''
result = exec rustup target list --toolchain ${CARGO_MAKE_TOOLCHAIN} --installed
if ${result.code}
exit ${result.code}
end
if contains ${result.stdout} "wasm32-unknown-unknown"
exit 0
else
exit 1
end
''']
[tasks.docker]
category = "Tools"
description = "Build the Firefly development Docker image"
cwd = "${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/.github/workflows"
command = "docker"
args = ["build", "--squash", "--force-rm", "-t", "kronicdeth/lumen-development:latest", "-f", "Dockerfile", "."]
[tasks.docker-release]
category = "Tools"
description = "Publish the latest version of the Docker image"
command = "docker"
args = ["push", "kronicdeth/lumen-development:latest"]
[tasks.linux-shell]
category = "Tools"
description = "Starts a shell in the kronicdeth/lumen-development:latest Docker image"
command = "docker"
args = [
"run",
"--privileged",
"--rm",
"-v",
"${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}:/opt/firefly",
"-v",
"${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}../llvm-project:/tmp/sources",
"-e",
"CARGO_TARGET_DIR=/var/firefly",
"-it",
"kronicdeth/lumen-development:latest",
"bash",
"-c",
"cd /opt/firefly; exec bash"
]
dependencies = ["prepare-docker-target-dir"]
[tasks.prepare-docker-target-dir]
private = true
condition = { files_not_exist = ["${CARGO_TARGET_DIR}/docker/target"] }
script_runner = "@duckscript"
script = ["mkdir ${CARGO_TARGET_DIR}/docker/target"]
[tasks.install-wasm-bindgen-cli]
category = "Web"
description = "Install wasm-bindgen"
install_crate = { crate_name = "wasm-bindgen-cli", binary = "wasm-bindgen", test_arg = ["--version"] }
[tasks.install-wasm-pack]
category = "Web"
description = "Install wasm-pack"
install_crate = { crate_name = "wasm-pack", binary = "wasm-pack", test_arg = ["-V"] }
[tasks.install-wasm-pack.linux]
install_script = ["curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh"]
[tasks.install-wasm-pack.mac]
install_script = ["curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh"]
[tasks.install-chrome-driver]
category = "Web"
description = "Installs the Chrome test driver"
condition_script = ['''
result = which chromedriver
if is_empty ${result}
exit 1
else
exit 0
''']
[tasks.install-chrome-driver.mac]
install_script = ['''
#!@duckscript
path = temp_file .zip
result = wget -O ${path} "https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_mac64.zip"
if not ${result}
trigger_error "Failed to download chromedriver!"
exit 1
end
output = exec unzip ${path} "chromedriver" -d "${CARGO_MAKE_CARGO_HOME}"
if ${output.code}
echo ${output.stderr}
exit ${output.code}
end
exec --fail-with-error chromedriver --version
''']
[tasks.install-gecko-driver]
category = "Web"
description = "Installs the Firefox (Gecko) test driver"
condition_script = ['''
result = which geckodriver
if is_empty ${result}
exit 1
else
exit 0
''']
[tasks.install-gecko-driver.mac]
install_script = ['''
#!@duckscript
path = temp_file .tar.gz
result = wget -O ${path} "https://github.com/mozilla/geckodriver/releases/download/v${GECKODRIVER_VERSION}/geckodriver-v${GECKODRIVER_VERSION}-macos.tar.gz"
if not ${result}
trigger_error "Failed to download geckodriver!"
exit 1
end
result = exec tar -xzvf ${path} -C "${CARGO_MAKE_CARGO_HOME}/bin"
if ${result.code}
echo ${result.stderr}
exit ${result.code}
end
result = which geckodriver
if is_empty ${result}
exit 1
else
exit 0
end
''']
[tasks.enable-safari-driver]
category = "Web"
description = "Enables the Safari test driver"
condition = { platforms = ["mac"] }
command = "sudo"
args = ["safaridriver", "--enable"]
[tasks.wasm-toolchain]
category = "Web"
description = "Sets up the WebAssembly toolchain for development"
run_task = { name = [
"install-wasm-target",
"install-wasm-bindgen-cli",
"install-wasm-pack",
"install-gecko-driver",
"install-chrome-driver",
"enable-safari-driver",
], parallel = true }