Ubuntuにmingw-std-threadsをインストールする方法は?

Ubuntuにmingw-std-threadsをインストールする方法は?

Windows用のBitcoinソースコードをダウンロードして使用しようとしています。これらスピード。

makeビットコインのソースコードを開くと、次のエラーが発生します。Windows Subsystem for Linux

error: ‘mutex’ in namespace ‘std’ does not name a type mutable std::mutex mutex;

パッケージには、sudo apt install g++-mingw-w64-x86-64Bitcoinソースコードを実行するために必要ないくつかの重要なスレッドエントリが含まれていないようです。ちょっと掘ってみると、追加でインストールする必要があるようです。mingw-std-threads

どうすればいいですか?

ベストアンサー1

案内の一部を見逃したようです。 Ubuntu 16.04では、以下を実行する必要があります。

sudo apt install software-properties-common
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu zesty universe"
sudo apt update
sudo apt upgrade
sudo update-alternatives --config x86_64-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.

Ubuntu 17.10以降:

sudo update-alternatives --config x86_64-w64-mingw32-g++ # Set the default mingw32 g++ compiler option to posix.

おすすめ記事