Skip to content

Commit

Permalink
build: Debugging: Show PMI(x) library directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Eta0 committed Oct 31, 2024
1 parent f8ad78e commit 22d759e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile.ubuntu20
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ RUN apt-get -qq update && \
datacenter-gpu-manager \
git

RUN LIB_DIR="/usr/lib/$(gcc -print-multiarch)"; \
echo "LIB: $LIB_DIR"; \
stat "$LIB_DIR" \
ls "$LIB_DIR"

# Mellanox OFED (latest)
RUN wget -qO - https://www.mellanox.com/downloads/ofed/RPM-GPG-KEY-Mellanox | apt-key add -
RUN cd /etc/apt/sources.list.d/ && wget https://linux.mellanox.com/public/repo/mlnx_ofed/latest/ubuntu20.04/mellanox_mlnx_ofed.list
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile.ubuntu22
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ RUN apt-get -qq update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN PMIX_DIR="/usr/lib/$(gcc -print-multiarch)/pmix2"; \
echo "PMIX: $PMIX_DIR"; \
stat "$PMIX_DIR" \
ls "$PMIX_DIR"

# Mellanox OFED (latest)
RUN wget -qO - https://www.mellanox.com/downloads/ofed/RPM-GPG-KEY-Mellanox | apt-key add -
RUN cd /etc/apt/sources.list.d/ && wget https://linux.mellanox.com/public/repo/mlnx_ofed/latest/ubuntu22.04/mellanox_mlnx_ofed.list
Expand Down

0 comments on commit 22d759e

Please sign in to comment.