Difference between revisions of "Installation windows Python x86-32 minGW"
Jump to navigation
Jump to search
(Created page with "== See also == [http://www.bozzograo.net/radiancewiki/doku.php?id=how_to_compile_radiance_using_the_mingw_tools_and_scons Guide to radiance compilation]") |
|||
| Line 1: | Line 1: | ||
| + | == How-to == | ||
| + | Download [http://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/ mingw-get-inst], and run it. | ||
| + | # Install to: C:\MinGW | ||
| + | # Take all options when installing | ||
| + | # | ||
| + | |||
| + | <source lang="text"> | ||
| + | It`ll use mingw compiler with msvc options in this case. Will not it? | ||
| + | I think we have to use | ||
| + | env = Environment(tools = ['default','mingw']) | ||
| + | instead. | ||
| + | |||
| + | env = Environment(tools = ['mingw']) | ||
| + | </source> | ||
| + | |||
| + | |||
== See also == | == See also == | ||
[http://www.bozzograo.net/radiancewiki/doku.php?id=how_to_compile_radiance_using_the_mingw_tools_and_scons Guide to radiance compilation] | [http://www.bozzograo.net/radiancewiki/doku.php?id=how_to_compile_radiance_using_the_mingw_tools_and_scons Guide to radiance compilation] | ||
Revision as of 18:55, 19 June 2013
How-to
Download mingw-get-inst, and run it.
- Install to: C:\MinGW
- Take all options when installing
It`ll use mingw compiler with msvc options in this case. Will not it?
I think we have to use
env = Environment(tools = ['default','mingw'])
instead.
env = Environment(tools = ['mingw'])