Skip to content
Snippets Groups Projects
Commit f2dc93a9 authored by Patrick Godwin's avatar Patrick Godwin Committed by Kipp Cannon
Browse files

O3 opt makefiles: update GDS to build with more cores

parent 8b502577
No related branches found
No related tags found
No related merge requests found
......@@ -195,7 +195,7 @@ $(GDS_TARGET) : $(LDASTOOLSFRAMECPP_TARGET)
@echo $(GREEN)gds$(WHITE) 1>&2
tar -xzf $(TAR_DIR)/$(GDS).tar.gz -C $(SRC_DIR)
cd $(SRC_DIR)/$(GDS) && ./configure --enable-online --prefix=$(INSTALL_DIR)
cd $(SRC_DIR)/$(GDS) && make && make install
cd $(SRC_DIR)/$(GDS) && make -j$(CORES) && make install -j$(CORES)
# ldas-tools-framecpp
ldas-tools-framecpp : logs/ldas-tools-framecpp.txt
......
......@@ -539,7 +539,7 @@ $(GDS_TARGET) : $(LDASTOOLSFRAMECPP_TARGET)
@echo $(GREEN)gds$(WHITE) 1>&2
tar -xzf $(TAR_DIR)/$(GDS).tar.gz -C $(SRC_DIR)
cd $(SRC_DIR)/$(GDS) && ./configure --enable-online --prefix=$(INSTALL_DIR) CC="gcc" CXX="g++" CFLAGS="$(GCCFLAGS) -lfftw3_threads -lfftw3f_threads"
cd $(SRC_DIR)/$(GDS) && make && make install
cd $(SRC_DIR)/$(GDS) && make -j$(CORES) && make install -j$(CORES)
# ldas-tools-framecpp
ldas-tools-framecpp : $(LOGS_DIR)/ldas-tools-framecpp.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment