Skip to content

Commit db484f7

Browse files
committed
Revert "Reinstate downloading old versions of winrpm gcc dll's (#18059)"
This reverts commit 7b4077f.
1 parent ff22bd9 commit db484f7

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
@@ -457,7 +457,7 @@ endif
457457

458458
ifeq ($(OS), WINNT)
459459
[ ! -d $(JULIAHOME)/dist-extras ] || ( cd $(JULIAHOME)/dist-extras && \
460-
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 )
460+
cp 7z.exe 7z.dll libexpat-1.dll zlib1.dll $(BUILDROOT)/julia-$(JULIA_COMMIT)/bin )
461461
ifeq ($(USE_GPL_LIBS), 1)
462462
[ ! -d $(JULIAHOME)/dist-extras ] || ( cd $(JULIAHOME)/dist-extras && \
463463
cp busybox.exe $(BUILDROOT)/julia-$(JULIA_COMMIT)/bin )
@@ -582,14 +582,7 @@ ifneq (,$(filter $(ARCH), i386 i486 i586 i686))
582582
$(JLDOWNLOAD) http://downloads.sourceforge.net/sevenzip/7z920.exe && \
583583
7z x -y 7z920.exe 7z.exe 7z.dll && \
584584
../contrib/windows/winrpm.sh http://download.opensuse.org/repositories/windows:/mingw:/win32/openSUSE_13.2 \
585-
"mingw32-libexpat1 mingw32-zlib1" && \
586-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libgfortran3-5.3.0-1.1.noarch.rpm && \
587-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libquadmath0-5.3.0-1.1.noarch.rpm && \
588-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libstdc++6-5.3.0-1.1.noarch.rpm && \
589-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libgcc_s_sjlj1-5.3.0-1.1.noarch.rpm && \
590-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw32-libssp0-5.3.0-1.1.noarch.rpm && \
591-
for i in *.rpm; do 7z x -y $$i; done && \
592-
for i in *.cpio; do 7z x -y $$i; done && \
585+
"mingw32-libgfortran3 mingw32-libquadmath0 mingw32-libstdc++6 mingw32-libgcc_s_sjlj1 mingw32-libssp0 mingw32-libexpat1 mingw32-zlib1" && \
593586
cp usr/i686-w64-mingw32/sys-root/mingw/bin/*.dll .
594587
else ifeq ($(ARCH),x86_64)
595588
cd $(JULIAHOME)/dist-extras && \
@@ -598,14 +591,7 @@ else ifeq ($(ARCH),x86_64)
598591
mv _7z.dll 7z.dll && \
599592
mv _7z.exe 7z.exe && \
600593
../contrib/windows/winrpm.sh http://download.opensuse.org/repositories/windows:/mingw:/win64/openSUSE_13.2 \
601-
"mingw64-libexpat1 mingw64-zlib1" && \
602-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libgfortran3-5.3.0-1.1.noarch.rpm && \
603-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libquadmath0-5.3.0-1.1.noarch.rpm && \
604-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libstdc++6-5.3.0-1.1.noarch.rpm && \
605-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libgcc_s_seh1-5.3.0-1.1.noarch.rpm && \
606-
$(JLDOWNLOAD) https://julialang.s3.amazonaws.com/bin/winnt/extras/mingw64-libssp0-5.3.0-1.1.noarch.rpm && \
607-
for i in *.rpm; do 7z x -y $$i; done && \
608-
for i in *.cpio; do 7z x -y $$i; done && \
594+
"mingw64-libgfortran3 mingw64-libquadmath0 mingw64-libstdc++6 mingw64-libgcc_s_seh1 mingw64-libssp0 mingw64-libexpat1 mingw64-zlib1" && \
609595
cp usr/x86_64-w64-mingw32/sys-root/mingw/bin/*.dll .
610596
else
611597
$(error no win-extras target for ARCH=$(ARCH))

0 commit comments

Comments
 (0)