summaryrefslogtreecommitdiff
path: root/contrib/depends/packages/native_cctools.mk
diff options
context:
space:
mode:
authorcyan <cyjan@mrcyjanek.net>2024-11-26 03:22:30 +0000
committercyan <cyjan@mrcyjanek.net>2024-11-26 03:22:30 +0000
commit3cf463e1250babee8be449ca28925f701e7fa29a (patch)
tree8c198b862f0c80fb3ce7b97c13e3e22226b30475 /contrib/depends/packages/native_cctools.mk
parentc90fa7019e8d6ce064e5736223ec055aafb37fd1 (diff)
- multithread build system
- fix android, mingw and linux build issues - remove dependency check - update Dockerfile to include pigz - show a message when pigz is missing - fix devcontainer mingw setup (missing ENV)
Diffstat (limited to 'contrib/depends/packages/native_cctools.mk')
-rw-r--r--contrib/depends/packages/native_cctools.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/depends/packages/native_cctools.mk b/contrib/depends/packages/native_cctools.mk
index 0324f7a..82079a6 100644
--- a/contrib/depends/packages/native_cctools.mk
+++ b/contrib/depends/packages/native_cctools.mk
@@ -19,10 +19,10 @@ define $(package)_config_cmds
endef
define $(package)_build_cmds
- $(MAKE)
+ $(MAKE) -j$(NUM_CORES)
endef
define $(package)_stage_cmds
- $(MAKE) DESTDIR=$($(package)_staging_dir) install && \
+ $(MAKE) -j$(NUM_CORES) DESTDIR=$($(package)_staging_dir) install && \
cp $($(package)_extract_dir)/cctools/misc/install_name_tool $($(package)_staging_prefix_dir)/bin/
endef