Mulder <[email protected]> writes: > # easy_install mwlib
[snip more than 7000 lines of error messages from gcc] > error: Setup script exited with error: command 'gcc' failed with exit > status 1 yes, that's a known problem. You can force gcc to bail out on the first error with -Wfatal-errors. Here's how you can force python setup.py to use this flag: python -c "from distutils.sysconfig import get_makefile_filename; print get_makefile_filename()" will print the complete path to a Makefile, which you must edit. Just add -Wfatal-errors to the CC and CXX variables in that file. Hopefully the next time you report an error, the amount of text you sent should be much smaller. If you need further help with the installation of mwlib, please read: http://mwlib.readthedocs.org/en/latest/installation.html Please don't follow any other instructions, as they are most probably outdated. Please let us know if the documentation at mwlib.readthedocs.org needs improvement. -- Cheers Ralf -- You received this message because you are subscribed to the Google Groups "mwlib" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mwlib?hl=en.
