
Use "prte" instead of "prun" for proxy execution of cmds like mpirun. This avoids the fork/exec-rendezvous complexities and should result in more reliable operation. Signed-off-by: Ralph Castain <rhc@pmix.org>
22 строки
647 B
Makefile
22 строки
647 B
Makefile
#
|
|
# Copyright (c) 2019-2020 Intel, Inc. All rights reserved.
|
|
# Copyright (c) 2020 IBM Corporation. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
if OMPI_WANT_PRRTE
|
|
install-exec-hook:
|
|
(cd $(DESTDIR)$(bindir); rm -f mpirun$(EXEEXT); $(LN_S) prte$(EXEEXT) mpirun$(EXEEXT))
|
|
(cd $(DESTDIR)$(bindir); rm -f mpiexec$(EXEEXT); $(LN_S) prte$(EXEEXT) mpiexec$(EXEEXT))
|
|
(cd $(DESTDIR)$(bindir); rm -f oshrun$(EXEEXT); $(LN_S) prte$(EXEEXT) oshrun$(EXEEXT))
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(bindir)/mpirun$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/mpiexec$(EXEEXT) \
|
|
$(DESTDIR)$(bindir)/oshrun$(EXEEXT)
|
|
endif
|