Ubuntu에 mingw-std-threads를 설치하는 방법은 무엇입니까?

Ubuntu에 mingw-std-threads를 설치하는 방법은 무엇입니까?

Windows용 비트코인 ​​소스 코드를 다운로드하여 사용하려고 합니다.이것들속도.

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.

우분투 17.10 이상에서:

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

관련 정보