[nostalgia/devenv] Remove pwsh and libc++

This commit is contained in:
Gary Talent 2019-03-07 17:58:42 -06:00
parent cd91f6b60a
commit c63a18b1dd

View File

@ -29,6 +29,7 @@ RUN dnf install -y fuse-devel
RUN dnf install -y qt5-devel
RUN dnf install -y findutils
RUN dnf install -y ninja-build
RUN dnf install -y libcxx-devel libcxxabi-devel
###############################################################################
# Install devkitARM
@ -56,12 +57,5 @@ WORKDIR /usr/src/project
ADD devenv/entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
###############################################################################
# Install Powershell
RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc
RUN curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo
RUN dnf update -y
RUN dnf install -y powershell
ENV CC clang
ENV CXX clang++