mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
Enable parallelization of build in dnnl make file (#845)
the current Makefile does not use the special `$(MAKE)` command, instead `make` is hard coded. This prevents the use of the `-j` flag, making the build slow. Signed-off-by: Muhammad El-Hindi <muhammad.el-hindi@cs.tu-darmstadt.com>
This commit is contained in:
Vendored
+1
-1
@@ -89,7 +89,7 @@ else
|
||||
endif
|
||||
|
||||
$(LIBDNNL):$(CHECK_SOURCE)
|
||||
mkdir -p $(DNNL_DIR)/build && cd $(DNNL_DIR)/build && cmake -DCMAKE_CXX_ENCLAVE_FLAGS="$(CXX_ENCLAVE_FLAGS)" -DCMAKE_C_ENCLAVE_FLAGS="$(C_ENCLAVE_FLAGS)" $(DNNL_CONFIG) .. && make
|
||||
mkdir -p $(DNNL_DIR)/build && cd $(DNNL_DIR)/build && cmake -DCMAKE_CXX_ENCLAVE_FLAGS="$(CXX_ENCLAVE_FLAGS)" -DCMAKE_C_ENCLAVE_FLAGS="$(C_ENCLAVE_FLAGS)" $(DNNL_CONFIG) .. && $(MAKE)
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
||||
Reference in New Issue
Block a user