Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
repository: openpmix/openpmix
path: openpmix/master
ref: master
fetch-depth: 0
- name: Build OpenPMIx
run: |
cd openpmix/master
Expand All @@ -28,6 +29,7 @@ jobs:
# configure.
libevent_cppflags=$(pkg-config libevent --cflags)
libevent_ldflags=$(pkg-config libevent --libs | perl -pe 's/^.*(-L[^ ]+).*$/\1/')
git checkout 08e41ed5
./autogen.pl
./configure --prefix=$RUNNER_TEMP/pmixinstall \
CPPFLAGS=$libevent_cppflags \
Expand Down Expand Up @@ -93,9 +95,11 @@ jobs:
repository: openpmix/openpmix
path: openpmix/master
ref: master
fetch-depth: 0
- name: Build OpenPMIx
run: |
cd openpmix/master
git checkout 08e41ed5
./autogen.pl
./configure --prefix=$RUNNER_TEMP/pmixinstall
make -j
Expand Down Expand Up @@ -141,9 +145,11 @@ jobs:
repository: openpmix/openpmix
path: openpmix/master
ref: master
fetch-depth: 0
- name: Build OpenPMIx
run: |
cd openpmix/master
git checkout 08e41ed5
./autogen.pl
./configure --prefix=$RUNNER_TEMP/pmixinstall
make -j
Expand Down
1 change: 0 additions & 1 deletion config/prte_config_files.m4
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ AC_DEFUN([PRTE_CONFIG_FILES],[
src/tools/prted/Makefile
src/tools/prun/Makefile
src/tools/prte_info/Makefile
src/tools/prte/Makefile
src/tools/pterm/Makefile
])
])
1 change: 1 addition & 0 deletions include/prte.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
* Main body of prte functionality
*/
int prte(int argc, char *argv[]);
int prte_launch(int argc, char *argv[]);

#endif
3 changes: 2 additions & 1 deletion src/runtime/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ libprrte_la_SOURCES += \
runtime/prte_mca_params.c \
runtime/prte_wait.c \
runtime/prte_data_server.c \
runtime/prte_progress_threads.c
runtime/prte_progress_threads.c \
runtime/prte_launcher.c
2 changes: 1 addition & 1 deletion src/tools/prte/prte.c → src/runtime/prte_launcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ static char *pmix_getline(FILE *fp)
}
#endif

int main(int argc, char *argv[])
int prte_launch(int argc, char *argv[])
{
int rc = 1, i;
char *param, *timeoutenv, *tpath, *cptr;
Expand Down
2 changes: 0 additions & 2 deletions src/tools/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ SUBDIRS += \
tools/prted \
tools/prun \
tools/prte_info \
tools/prte \
tools/pterm

DIST_SUBDIRS += \
tools/prted \
tools/prun \
tools/prte_info \
tools/prte \
tools/pterm

55 changes: 0 additions & 55 deletions src/tools/prte/Makefile.am

This file was deleted.

Loading