编译 Orange 时出现 GCC 警告

编译 Orange 时出现 GCC 警告

当我尝试安装 Orange (http://orange.biolab.si/download/)在 ubuntu 上,我收到以下消息:

gcc -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC \
    -I/usr/include/python2.7 \
    -I/usr/lib/python2.7/dist-packages/numpy/core/include \
    -Isource/include -Isource/orange/liblinear \
    -Isource/orange/ppp -Isource/orange/px \
    -I/usr/include/python2.7 \
    -c source/orange/tdidt_clustering.cpp \
    -o build/temp.linux-x86_64-2.7/source/orange/tdidt_clustering.o \
    -fPIC -w -DLINUX -DORANGE_EXPORTS
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for Ada/C/ObjC but not for C++ [enabled by default]

这是什么意思?我该怎么办?

答案1

您不必执行任何操作,因为这些是警告而不是错误。

您可以做的就是通知软件包的维护人员,让他们知道警告会让非新手感到困惑,以及他们是否可以消除它们。如果您确实向他们提供了您的设置信息,因为他们可能看不到他们的警告。

相关内容