From 0dfc1b508d5e5b361978ef9783cb63775176c305 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Sat, 23 Sep 2023 20:24:37 +0800 Subject: rust: Use make's jobserver when building packages This allows cargo to use make's jobserver when building packages, by marking the cargo command as recursive (with the + prefix[1]) and setting MAKEFLAGS. This also: * Give cargo/x.py the build directory instead of having to change the current directory (and opening subshells) * Set PKG_BUILD_PARALLEL/HOST_BUILD_PARALLEL for Rust packages to enable the use of make's jobserver [1]: https://www.gnu.org/software/make/manual/html_node/POSIX-Jobserver.html Signed-off-by: Jeffery To --- utils/ripgrep/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'utils/ripgrep') diff --git a/utils/ripgrep/Makefile b/utils/ripgrep/Makefile index 56658540f..bad9f95e2 100644 --- a/utils/ripgrep/Makefile +++ b/utils/ripgrep/Makefile @@ -17,6 +17,7 @@ PKG_LICENSE:=MIT Unlicense PKG_LICENSE_FILES:=LICENSE-MIT UNLICENSE PKG_BUILD_DEPENDS:=rust/host +PKG_BUILD_PARALLEL:=1 RUST_PKG_FEATURES:=pcre2 -- cgit v1.2.3