Orange를 컴파일할 때 GCC 경고가 나타납니다.

Orange를 컴파일할 때 GCC 경고가 나타납니다.

오렌지(http://orange.biolab.si/download/) 우분투에서는 다음 메시지가 나타납니다.

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

이는 오류가 아닌 경고이므로 아무 작업도 수행할 필요가 없습니다.

당신이 할 수 있는 일은 패키지 관리자에게 알리고 경고가 초보자가 아닌 사람들에게 혼란을 준다는 사실과 경고를 제거할 수 있는지 알려주는 것입니다. 경고가 표시되지 않을 수 있으므로 설정 정보를 제공하면 됩니다.

관련 정보