Skip to content

Commit

Permalink
Add prefixing capability to prrte library
Browse files Browse the repository at this point in the history
Updated Makefile.am files to include @PRTE_BINARY_PREFIX@ in library and
binary names where appropriate.
Verified successful build and functionality of prefixed binaries
This commit ensures compatiblity with prefixed binary naming while
maintaining the integrity of the build system and runtime.

Signed-off-by: Michael Ayele <[email protected]>
  • Loading branch information
Michael-uofl committed Dec 3, 2024
1 parent bfa66cb commit 689a658
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/tools/prte_info/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ AM_LDFLAGS = $(prte_hwloc_LDFLAGS) $(prte_libevent_LDFLAGS) $(prte_pmix_LDFLAGS)
#Applied binary prefix to the names
bin_PROGRAMS = @PRTE_BINARY_PREFIX@prte_info

prte_info_SOURCES = \
@PRTE_BINARY_PREFIX@prte_info_SOURCES = \
pinfo.h \
prte_info.c \
output.c \
param.c \
components.c \
version.c

prte_info_LDADD = \
@PRTE_BINARY_PREFIX@prte_info_LDADD = \
$(prte_libevent_LIBS) \
$(prte_hwloc_LIBS) \
$(prte_pmix_LIBS) \
Expand Down
4 changes: 2 additions & 2 deletions src/tools/prun/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ AM_CFLAGS = \
#Apply binary prefix to the names
bin_PROGRAMS = @PRTE_BINARY_PREFIX@prun

prun_SOURCES = \
@PRTE_BINARY_PREFIX@prun_SOURCES = \
main.c \
prun.c \
prun.h

prun_LDADD = \
@PRTE_BINARY_PREFIX@prun_LDADD = \
$(prte_libevent_LIBS) \
$(prte_hwloc_LIBS) \
$(prte_pmix_LIBS) \
Expand Down
4 changes: 2 additions & 2 deletions src/tools/pterm/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ AM_LDFLAGS = $(prte_hwloc_LDFLAGS) $(prte_libevent_LDFLAGS) $(prte_pmix_LDFLAGS)
#Apply binary prefix to the names
bin_PROGRAMS = @PRTE_BINARY_PREFIX@pterm

pterm_SOURCES = \
@PRTE_BINARY_PREFIX@pterm_SOURCES = \
pterm.c

pterm_LDADD = \
@PRTE_BINARY_PREFIX@pterm_LDADD = \
$(prte_libevent_LIBS) \
$(prte_hwloc_LIBS) \
$(prte_pmix_LIBS) \
Expand Down

0 comments on commit 689a658

Please sign in to comment.