Eclipse - ISO C++11 (-std=c++0x)

Eclipse - ISO C++11 (-std=c++0x)

1. Build Project

......
/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
 #error This file requires compiler and library support \
......

2. ISO C++11 (-std=c++0x)

webcam_NCS -> Properties -> C/C++ Build -> Settings -> Tool Settings -> GCC C++ Compiler -> Dialect
Language standard: ISO C++11 (-std=c++0x)

Eclipse - ISO C++11 (-std=c++0x)_第1张图片

3. webcam_NCS -> Build Project

4. compile.sh

#!/bin/bash

VIDEOIO=`pkg-config --libs opencv | grep "lopencv_videoio"`
if [ "$VIDEOIO" == "" ]
then
    echo "no videoio library"
    g++ -std=c++11 cpp/gender_age_lbp.cpp cpp/fp16.c -o cpp/gender_age_lbp -L/usr/local/lib -lmvnc -lopencv_core -lopencv_imgproc -lopencv_highgui -lopencv_objdetect
else
    echo "found videoio library"
    g++ -std=c++11 cpp/gender_age_lbp.cpp cpp/fp16.c -o cpp/gender_age_lbp -L/usr/local/lib -lmvnc -lopencv_core -lopencv_imgproc -lopencv_highgui -lopencv_objdetect -lopencv_videoio
fi

你可能感兴趣的:(C++,Eclipse,IDE)