|
From: Eli Z. <el...@gn...> - 2015-03-17 07:24:37
|
> From: Xi Shen <dav...@gm...> > Date: Mon, 16 Mar 2015 23:38:36 +0000 > > I need 64bit gcc to work on 64bit Windows system. > > I think I found the problem. I get mingw from the installer from > http://www.mingw.org/, and it seems the installer can only install mingw32-* > packages which are all 32bit. > > I found a http://mingw-w64.sourceforge.net/, but it only provides 64bit gcc...I > looked through its package manager, but I could not find any package related to > fortran or math. > > Any idea I can get all these 64bit DLLs? Or I have to build myself? You are asking these questions in the wrong forum. The package you downloaded was clearly built using a port of GCC that is not the one distributed by mingw.org. E.g., the GCC distributed by mingw.org was never configured to use SEH exceptions, AFAIK, so it cannot have libgcc_s_seh-1.dll. So the best way to solve your problem is to ask the person(s) who produced the netlib-java package to tell you where to find the exact version of GCC they used to build that package. Trying to use any other similarly-called DLLs will only get you in trouble, because of incompatibilities between different ports of GCC. As a side note, I think people who provide precompiled binaries that depend on DLLs specific to certain GCC ports are making a disservice to their users. They should at the very least provide those DLLs from the same site as the binaries they distribute, or even in the same archive. But that's me. |