Skip to content

Commit 49d0d48

Browse files
committed
Revert "Reinstate downloading old versions of winrpm gcc dll's (#18059)"
This reverts commit 7b4077f. (cherry picked from commit db484f7) ref #20152
1 parent bd26938 commit 49d0d48

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

Makefile

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ endif
473473

474474
ifeq ($(OS), WINNT)
475475
[ ! -d $(JULIAHOME)/dist-extras ] || ( cd $(JULIAHOME)/dist-extras && \
476-
cp 7z.exe 7z.dll libexpat-1.dll zlib1.dll libgfortran-3.dll libquadmath-0.dll libstdc++-6.dll libgcc_s_s*-1.dll libssp-0.dll $(BUILDROOT)/julia-$(JULIA_COMMIT)/bin )
476+
cp 7z.exe 7z.dll libexpat-1.dll zlib1.dll $(BUILDROOT)/julia-$(JULIA_COMMIT)/bin )
477477
ifeq ($(USE_GPL_LIBS), 1)
478478
[ ! -d $(JULIAHOME)/dist-extras ] || ( cd $(JULIAHOME)/dist-extras && \
479479
cp busybox.exe $(BUILDROOT)/julia-$(JULIA_COMMIT)/bin )
@@ -602,14 +602,7 @@ ifneq (,$(filter $(ARCH), i386 i486 i586 i686))
602602
$(JLDOWNLOAD) http://downloads.sourceforge.net/sevenzip/7z920.exe && \
603603
7z x -y 7z920.exe 7z.exe 7z.dll && \
604604
../contrib/windows/winrpm.sh http://download.opensuse.org/repositories/windows:/mingw:/win32/openSUSE_13.2 \
605-
"mingw32-libexpat1 mingw32-zlib1" && \
606-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libgfortran3-5.3.0-1.1.noarch.rpm && \
607-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libquadmath0-5.3.0-1.1.noarch.rpm && \
608-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libstdc++6-5.3.0-1.1.noarch.rpm && \
609-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libgcc_s_sjlj1-5.3.0-1.1.noarch.rpm && \
610-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libssp0-5.3.0-1.1.noarch.rpm && \
611-
for i in *.rpm; do 7z x -y $$i; done && \
612-
for i in *.cpio; do 7z x -y $$i; done && \
605+
"mingw32-libgfortran3 mingw32-libquadmath0 mingw32-libstdc++6 mingw32-libgcc_s_sjlj1 mingw32-libssp0 mingw32-libexpat1 mingw32-zlib1" && \
613606
cp usr/i686-w64-mingw32/sys-root/mingw/bin/*.dll .
614607
else ifeq ($(ARCH),x86_64)
615608
cd $(JULIAHOME)/dist-extras && \
@@ -618,14 +611,7 @@ else ifeq ($(ARCH),x86_64)
618611
mv _7z.dll 7z.dll && \
619612
mv _7z.exe 7z.exe && \
620613
../contrib/windows/winrpm.sh http://download.opensuse.org/repositories/windows:/mingw:/win64/openSUSE_13.2 \
621-
"mingw64-libexpat1 mingw64-zlib1" && \
622-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libgfortran3-5.3.0-1.1.noarch.rpm && \
623-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libquadmath0-5.3.0-1.1.noarch.rpm && \
624-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libstdc++6-5.3.0-1.1.noarch.rpm && \
625-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libgcc_s_seh1-5.3.0-1.1.noarch.rpm && \
626-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libssp0-5.3.0-1.1.noarch.rpm && \
627-
for i in *.rpm; do 7z x -y $$i; done && \
628-
for i in *.cpio; do 7z x -y $$i; done && \
614+
"mingw64-libgfortran3 mingw64-libquadmath0 mingw64-libstdc++6 mingw64-libgcc_s_seh1 mingw64-libssp0 mingw64-libexpat1 mingw64-zlib1" && \
629615
cp usr/x86_64-w64-mingw32/sys-root/mingw/bin/*.dll .
630616
else
631617
$(error no win-extras target for ARCH=$(ARCH))

0 commit comments

Comments
 (0)