module installcustom.install_custom_mingw

Short summary

module pymyinstall.installcustom.install_custom_mingw

Various functions to install MinGW.

source on GitHub

Functions

function

truncated documentation

install_mingw

install MinGW (only on Windows)

Documentation

Various functions to install MinGW.

source on GitHub

pymyinstall.installcustom.install_custom_mingw.install_mingw(dest_folder='.', fLOG=<built-in function print>, install=True, version=None)

install MinGW (only on Windows)

Parameters:
  • dest_folder – where to download the setup

  • fLOG – logging function

  • install – install (otherwise only download)

  • version – version to install (unused)

Returns:

temporary file

Packages to install:
  • gcc

  • g77 3.4.5

  • binutils

  • mingw-runtime

  • w32api

  • gcc-core - C compiler

  • gcc-g++ - C++ compiler

  • gcc-objc - Objective C compiler

  • gcc-gfortran - Fortran 90/95 compiler

  • gcc-java - Java compiler

  • gcc-ada - Ada compiler

  • mingw-gdb - Windows native build of GNU debugger

  • mingw32-make - Windows native build of GNU make

  • mingw-utils - Miscellaneous utilities

mingw-get install binutils gcc g++ mingw32 fortran gdb mingw32 mingw w32api g77==3.4.5

source on GitHub