sandepp
sandepp

Reputation: 532

Error while installing orange2.6 cc1plus: warning: -Wstrict-prototypes’

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

Answers (1)

Aleš Erjavec
Aleš Erjavec

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

Related Questions