我正在使用Ubuntu12.04LTS,当我尝试执行premake5工具(http://premake.github.io/download.html)时,我得到了以下错误,并且我还没有想出如何解决它。
premake5: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.16' not found (required by premake5)
我在网上读到了一些由这个版本的Ubuntu引起的东西。有什么想法吗?
发布于 2016-07-28 10:22:35
二进制版本的premake5
是为一个更现代的操作系统。旧的Ubuntu12.04有(g)libc libc6
→版本2.15,不能使用。
premake5
也可以作为源代码,premake-4.4-beta5-src.zip
http://sourceforge.net/projects/premake/files/Premake/4.4/premake-4.4-beta5-src.zip/download .或者https://github.com/premake/premake-core ..。您可以尝试使用Ubuntu12.04构建它。
确认:premake5
使用Ubuntu12.04.5构建OK
git clone https://github.com/premake/premake-core.git
cd premake-core/
git submodule init
git submodule update
make -f Bootstrap.mak linux
提供premake-core/bin/release/premake5
https://stackoverflow.com/questions/38632261
复制相似问题