From c76d498f441bc32e00e149cf1eccb9a736126966 Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Fri, 9 Feb 2024 17:17:12 +0100 Subject: [PATCH] mk/default.mk: Use make single by default This is compatible with parallel execution and can also help to catch native compilation errors (native compilation compiles .elc files separately), like the one discussed in bug#68851. --- mk/default.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/default.mk b/mk/default.mk index d1d875d74..b75aac345 100644 --- a/mk/default.mk +++ b/mk/default.mk @@ -203,7 +203,7 @@ SUDO = sudo INSTALL_INFO = install-info # target method for 'compile' -ORGCM = dirall +ORGCM = single # ORGCM = dirall # 1x slowdown compared to default compilation method # ORGCM = single # 4x one Emacs process per compilation # ORGCM = native # 4x one Emacs process per native compilation