2010/8/21 ArbolOne <[email protected]>: > Hey kids! > Ok, I finally finish installing XP64 now I need to install MinGW64 as > well. For this task I have found three downloads: > 1) mingw-w64-v1.0-snapshot-20100818 > 2) mingw_dgn_media-w64-bin-x86_64-20100808 > 3) mingw_dgn_basic-w64-bin-x86_64-20100808 > > They all contain different files their identical , so which one do I > install first, and do I have to install each of this programs in > different folder/directories?
(1) is the toolchain, provide the gcc/g++ etc program (2) and (3) is some optional library and tools, if you want to compile some program depend on these library, then you need to install it, otherwise they are optional. It doesn't matter which one install first, nor whether they should install in the same or different folder, For (2) and (3), if you install in the same folder with (1), then the compiler can find the header and library in the default place. If install in difference folder, you need to use "CFLAGS += -I xxxx" and "LDFLAGS += -L xxxx" to set the search path. I usually install in difference folder, so that easy to replace or test difference version. > One more question, does MinGW64 uses GCC-4.5.1 or is it still using an > older version? Usually it use GCC-4.5.x, or gcc-4.4.x. > > Is any body working on a Installer for Win64? > > TIA > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by > > Make an app they can't live without > Enter the BlackBerry Developer Challenge > http://p.sf.net/sfu/RIM-dev2dev > _______________________________________________ > Mingw-w64-public mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/mingw-w64-public > -- regards, drangon ------------------------- homepage : http://www.drangon.org/ mingw stuff : http://www.drangon.org/mingw/ mingw stuff 2 : http://code.google.com/p/mingw-w64-dgn/ ------------------------- ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
