forked from etmc/tmLQCD
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize build for parallel make. Move away from "all-recursive" cons…
…truct in favor of a "subdirectories" construct without a loop. $(SUBDIRS): $(MAKE) --directory=$@ This allows make to parallelize building files from different directories at the same time. Up to now, make only built files from each directory in parallel, resulting in the "operator" directory taking a long time to build with highly optimizing compilers. In addition, shuffle build order to encourage modules that take a long time to compile to start early in the compilation process.
- Loading branch information
Showing
4 changed files
with
17 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters