Reputation: 532
I am trying to install Orange2.6 on my ubuntu 13.10 python version 2.7.5.While running
python setup.py build
I am getting following error
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [enabled by default]
Upvotes: 1
Views: 630
Reputation: 1106
That is a warning not an error (and is 'expected' when compiling C++ extensions with python's distutils using gcc). You can ignore it an let the compilation continue.
Upvotes: 1