%general-entities; ]> MinGW-w64-CRT-&mingw-w64-version; mingw-w64-crt Introduction to MinGW-w64-CRT MinGW-w64-CRT provides runtime libraries needed by Windows, ranging from basic C and C++ operations to providing DirectX libraries used by many applications including games. &lfs121_checked; Package Information Download (HTTP): Download (FTP): Download MD5 sum: &mingw-w64-md5sum; Download size: &mingw-w64-size; Estimated disk space required: &mingw-w64-buildsize; Estimated build time: &mingw-w64-time; MinGW-w64-CRT Dependencies Required , , and Installation of MinGW-w64-CRT x86_64 MinGW-w64-CRT Install x86_64 MinGW-w64-CRT by running the following commands: mkdir build-x86_64-crt && cd build-x86_64-crt ../mingw-w64-crt/configure --prefix=/usr/x86_64-w64-mingw32 \ --disable-lib32 \ --enable-lib64 \ --host=x86_64-w64-mingw32 \ --enable-wildcard make Now, as the root user: make install i686 MinGW-w64-CRT Install i686 MinGW-w64-CRT by running the following commands: mkdir build-i686-crt && cd build-i686-crt ../mingw-w64-crt/configure --prefix=/usr/i686-w64-mingw32 \ --disable-lib64 \ --enable-lib32 \ --host=i686-w64-mingw32 \ --enable-wildcard make Now, as the root user: make install Command Explanations --prefix=/usr/*: This option installs the files to their respective architecture for better separation of architectures. --{dis,en}able-lib{32,64}: These options first disable the library format not used by the architecture then enables the library format that is used by the architecture. --host=*: This option builds files for the architecture passed to it. --enable-wildcard: This option enables command line globbing. Contents Installed Programs Installed Libraries Installed Directories None Various static libraries needed by Windows. To see the whole list, visit and see "Package Contents". None