From b1e76ff3af81bbdfb4b8dfcce5d7d93e7a08dd72 Mon Sep 17 00:00:00 2001 From: Edward Hutter Date: Mon, 18 Sep 2023 18:06:13 -0500 Subject: [PATCH] Remove -j4 compiler flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 889af5c0..c980d0c5 100644 --- a/Makefile +++ b/Makefile @@ -118,7 +118,7 @@ $(BDIR)/lib_python/ctf/tensor.o: $(BDIR)/setup.py $(BDIR)/lib_shared/libctf.so $ cd src_python; \ ln -sf $(BDIR)/setup.py setup.py; \ mkdir -p $(BDIR)/lib_python/ctf && cp ctf/__init__.py $(BDIR)/lib_python/ctf/ ; \ - LDFLAGS="-L$(BDIR)/lib_shared" python setup.py build_ext -j4 --force -b $(BDIR)/lib_python/ -t $(BDIR)/lib_python/; \ + LDFLAGS="-L$(BDIR)/lib_shared" python setup.py build_ext --force -b $(BDIR)/lib_python/ -t $(BDIR)/lib_python/; \ rm setup.py; \ cd ..;