在 WSL 上编译 VLC:需要支持 C++11 语言功能的编译器

在 WSL 上编译 VLC:需要支持 C++11 语言功能的编译器

我正在尝试使用 Windows Subsystem For Linux(又名 Windows 上的 Ubuntu 上的 Bash)编译 Windows VLC。

我正在遵循这个指南:

https://wiki.videolan.org/Win32Compile/

运行配置脚本时显示:

checking whether x86_64-w64-mingw32-g++ supports C++11 features by default... no
checking whether x86_64-w64-mingw32-g++ supports C++11 features with -std=c++11... no
checking whether x86_64-w64-mingw32-g++ supports C++11 features with -std=c++0x... no
configure: error: *** A compiler with support for C++11 language features is required.

我已经安装了 GCC 5

~/vlc/win32$ g++ --version
g++ (Ubuntu 5.4.1-2ubuntu2) 5.4.1 20160929
...
~/vlc/win32$ gcc --version
gcc (Ubuntu 5.4.1-2ubuntu2) 5.4.1 20160929

相关内容