-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20471 from ronawho/gasnet-ld-requires-mpi-patch
Bring in upstream gasnet patch for checking if LD requires MPI [reviewed by @mppf] Bring in https://bitbucket.org/berkeleylab/gasnet/pull-requests/554 and some related work to enable getting `GASNET_LD_REQUIRES_MPI` out of gasnet's pkg-config file. This is a follow up to #20385, which has additional motivation for the change.
- Loading branch information
Showing
13 changed files
with
57 additions
and
18 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,37 @@ | ||
include $(FRAGMENT) | ||
|
||
.EXPORT_ALL_VARIABLES: | ||
|
||
# echovar: | ||
# output a VAR=VAL string for provided $(VAR) | ||
# if the variable is unset, the result is an empty VAL | ||
|
||
echovar: | ||
@echo $(VAR)=$($(VAR)) | ||
|
||
#export $(VARS) | ||
.EXPORT_ALL_VARIABLES: | ||
|
||
# Iterative form accepts variable names in $(VARS) | ||
echovars: | ||
@for var in $(VARS) ; do \ | ||
eval echo $$var=\$$$$var ; \ | ||
done | ||
|
||
.PHONY: echovar echovars | ||
# echovar-preserve-unset: | ||
# output a VAR=VAL string for provided $(VAR) | ||
# if the variable is unset, the result is no output | ||
|
||
echovar-preserve-unset: | ||
@if ! test -z $${$(VAR)+set} ; then \ | ||
echo $(VAR)=$($(VAR)) ; \ | ||
fi | ||
|
||
# Iterative form accepts variable names in $(VARS) | ||
echovars-preserve-unset: | ||
@for var in $(VARS) ; do \ | ||
if ! eval test -z \$${$${var}+set} ; then \ | ||
eval echo $$var=\$$$$var ; \ | ||
fi ; \ | ||
done | ||
|
||
|
||
.PHONY: echovar echovars echovar-preserve-unset echovars-preserve-unset | ||
|
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