Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/games/anki/files/patch-build_runner_src_build.rs
16462 views
1
* Make ninja build verbose
2
* Make cargo build for components of the build framework (= runner) more verbose
3
4
--- build/runner/src/build.rs.orig 2024-02-29 18:06:02 UTC
5
+++ build/runner/src/build.rs
6
@@ -57,6 +57,7 @@ pub fn run_build(args: BuildArgs) {
7
let start_time = Instant::now();
8
let mut command = Command::new(get_ninja_command());
9
command
10
+ .arg("-v")
11
.arg("-f")
12
.arg(&build_file)
13
.args(ninja_args)
14
@@ -150,7 +151,7 @@ fn bootstrap_build() {
15
16
fn bootstrap_build() {
17
let status = Command::new("cargo")
18
- .args(["run", "-p", "configure"])
19
+ .args(["run", "-p", "configure", "--verbose"])
20
.status();
21
assert!(status.expect("ninja").success());
22
}
23
24