0
これは、作成しようとしているアプリケーションですpokerstove。私はLinuxプラットフォーム上でそれを作る方法についての指示に従っていますが、makeコマンドを実行するときにエラーが発生します。githubからアプリケーションを作成しようとしていますが、エラーが発生しました
usr/include/c++/4.8/bits/c++0x_warning.h:32:2: error: #error This file
requires compiler and library support for the ISO C++ 2011 standard.
This support is currently experimental, and must be enabled with the
-std=c++11 or -std=gnu++11 compiler options.
#error This file requires compiler and library support for the \
私は旗
sudo make CPPFLAGS+="-std=c++11 ..."
を使用してみました。しかし、それは動作しません。誰かが助けてくれますか?
あなたはcmake
実行ファイルに渡すことにより、コンパイルフラグを変更することがありCMakeのプロジェクトを使用すると
あなたは 'make'を実行するために、' sudo'を必要はありませんし、実際に問題を導入することができますそうすることによって。 – tripleee