Home
       build: Add paralelism to libc builds - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 4b12fe6bce151c8f1d4d7d65a0b2461fc0f780af
   DIR parent 2f9ee2943948454638d724feeacbbae63a63179c
  HTML Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
       Date:   Wed,  9 Oct 2024 10:38:10 +0200
       
       build: Add paralelism to libc builds
       
       The + command modifier has a side effect which enables parallel
       build for the submake.
       
       Diffstat:
         M src/libc/Makefile                   |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/src/libc/Makefile b/src/libc/Makefile
       @@ -21,7 +21,7 @@ NODEP = 1
        TARGET = $(LIBC) $(BINDIR)/gcc-scc
        
        all: $(DIRS)
       -        $(MAKE) $(TARGET)
       +        +@$(MAKE) $(TARGET)
        
        $(LIBC): $(OBJS)
                $(AR) $(PROJ_ARFLAGS) $(LIBC) $?