On Sun, Oct 2, 2011 at 8:29 PM, Vlad Niculae <[email protected]> wrote: > Hello, list > > I ran into some issues when building the win32 installers for > scikit-learn 0.9, and I am describing the problem and the patchy > solution found in this e-mail, in case anybody can suggest a better > way to handle it. > > The problem manifested itself by printing the "Please don't forget to > run `make` first" message upon import. > > This is the solution found by `wahaa` on github, which worked:
Could you give the context of his solution. Statically linking libgcc or the C++ runtime is often a bad idea. As for a clean way to extend flags, there is no such thing with distutils. The cleanest thing you can do is to subclass the C/C++ compiler class for mingw, and do you stuff there (the same way as numpy.distutils does it). cheers, David ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2dcopy2 _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
