Skip to content

Commit 4917ae2

Browse files
committed
Removed references to pcc and psched from documentation and build files
Signed-off-by: Michael Ayele <whayel01@louisville.edu>
1 parent f28bfc1 commit 4917ae2

File tree

12 files changed

+3
-230
lines changed

12 files changed

+3
-230
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,7 @@ src/tools/prun/prun
158158
src/tools/prte_info/prte_info
159159
src/tools/prted/prted
160160
src/tools/prte/prte
161-
src/tools/pcc/pcc
162-
src/tools/pcc/pcc-wrapper-data.txt
163161
src/tools/pterm/pterm
164-
src/tools/psched/psched
165162

166163
src/util/hostfile/hostfile_lex.c
167164
src/util/keyval/keyval_lex.c

config/prte_config_files.m4

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,10 @@ AC_DEFUN([PRTE_CONFIG_FILES],[
2020
src/etc/Makefile
2121
src/util/Makefile
2222
src/util/hostfile/Makefile
23-
src/tools/pcc/Makefile
2423
src/tools/prted/Makefile
2524
src/tools/prun/Makefile
2625
src/tools/prte_info/Makefile
2726
src/tools/prte/Makefile
2827
src/tools/pterm/Makefile
29-
src/tools/psched/Makefile
30-
])
28+
])
3129
])

docs/Makefile.am

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ PRTE_MAN1 = \
6868
prted.1 \
6969
prterun.1 \
7070
prun.1 \
71-
psched.1 \
7271
pterm.1
7372

7473
PRTE_MAN5 = \

docs/man/man1/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ Commands (section 1)
99
prted.1.rst
1010
prterun.1.rst
1111
prun.1.rst
12-
psched.1.rst
1312
pterm.1.rst

docs/man/man1/psched.1.rst

Lines changed: 0 additions & 189 deletions
This file was deleted.

docs/news/news-v2.x.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ series, in reverse chronological order.
4242
- Remove event header defines
4343
- Minor cleanups and ensure no local IOF copy
4444
when persistent
45-
- change the pcc wrapper compiler to a symlink
4645
to pmixcc
4746
- Cleanup code a bit
4847
- Select all adapters with IPv4 addresses within

docs/resilience.rst

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ Building your application
5757

5858
Compile your application as usual
5959

60-
#. using the provided ``pcc`` for pmix-based application;
6160
#. using your ``mpicc`` for mpi-based application with a prte-based MPI (e.g., Open MPI).
6261

6362
Running your application
@@ -128,7 +127,7 @@ Testing
128127
--prtemca prte_abort_on_non_zero_status 0 \
129128
--debug-daemons
130129
131-
# using 'errmgr_detector_enable 1' choose enable the error detector.
130+
# using 'errmgr_detector_enable 1' choose enable the error detector.
132131
133132
Config with ``--enable-debug``, ``--debug-daemons`` will give you lots of information.
134133

@@ -145,9 +144,6 @@ Step 3: under example we have 2 test codes ``error_notify.c``,
145144

146145
.. code-block:: bash
147146
148-
# Compile the codes
149-
pcc -g error_notify.c -o error_notify
150-
151147
# Run
152148
prun --oversubscribe --merge-stderr-to-stdout \
153149
--map-by node:DISPLAY:DISPLAYALLOC \
@@ -159,12 +155,6 @@ If use external pmix:
159155

160156
.. code-block:: bash
161157
162-
# Compile
163-
pcc error_notify.c -o error_notify_1 \
164-
-I/external_pmix_install_path/include \
165-
-L/external_pmix_install_path/lib \
166-
-lpmix
167-
168158
# Run
169159
prun --oversubscribe -x LD_LIBRARY_PATH \
170160
--merge-stderr-to-stdout \
@@ -177,12 +167,6 @@ Iif use external pmix:
177167

178168
.. code-block:: bash
179169
180-
# Compile
181-
pcc daemon_error_notify.c -o daemon_error_notify_1 \
182-
-I/external_pmix_install_path/include \
183-
-L/external_pmix_install_path/lib \
184-
-lpmix
185-
186170
# Run
187171
prun --oversubscribe -x LD_LIBRARY_PATH \
188172
--merge-stderr-to-stdout \

examples/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
# Use the PRRTE-provided wrapper compiler
2626

27-
CC = pcc
2827

2928
# Using -g is not necessary, but it is helpful for example programs,
3029
# especially if users want to examine them with debuggers.

examples/README

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,4 @@ been directed _not_ to return any collected data from calls to PMIx_Put.
2727
dynamic.c:
2828

2929

30-
The Makefile assumes that the pcc wrapper compiler is in your path.
31-
3230
Make today a PMIx day!

src/docs/show-help-files/Makefile.am

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ RST_SOURCE_FILES = \
4040
$(srcdir)/help-prted.rst \
4141
$(srcdir)/help-prterun.rst \
4242
$(srcdir)/help-prun.rst \
43-
$(srcdir)/help-psched.rst \
4443
$(srcdir)/help-pterm.rst \
4544
$(srcdir)/help-cli.rst \
4645
$(srcdir)/help-dash-host.rst \
@@ -60,7 +59,6 @@ ALL_TXT_BUILT = \
6059
$(TXT_OUTDIR)/help-prted.txt \
6160
$(TXT_OUTDIR)/help-prterun.txt \
6261
$(TXT_OUTDIR)/help-prun.txt \
63-
$(TXT_OUTDIR)/help-psched.txt \
6462
$(TXT_OUTDIR)/help-pterm.txt \
6563
$(TXT_OUTDIR)/help-cli.txt \
6664
$(TXT_OUTDIR)/help-dash-host.txt \

src/tools/Makefile.am

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,14 @@
2828
SUBDIRS += \
2929
tools/prted \
3030
tools/prun \
31-
tools/pcc \
3231
tools/prte_info \
3332
tools/prte \
3433
tools/pterm
3534

36-
if WANT_PRTE_SCHED
37-
SUBDIRS += \
38-
tools/psched
39-
endif
40-
4135
DIST_SUBDIRS += \
4236
tools/prted \
4337
tools/prun \
44-
tools/pcc \
4538
tools/prte_info \
4639
tools/prte \
4740
tools/pterm \
48-
tools/psched
41+

test/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525

2626
# Use the PRTE-provided wrapper compiler
2727

28-
CC = pcc
29-
3028
# Using -g is not necessary, but it is helpful for example programs,
3129
# especially if users want to examine them with debuggers.
3230

0 commit comments

Comments
 (0)