premake / premake-core

Premake
https://premake.github.io/
BSD 3-Clause "New" or "Revised" License
3.24k stars 618 forks source link

we really need to static-link the libs on linux #632

Open TurkeyMan opened 8 years ago

TurkeyMan commented 8 years ago

From one of my travis-ci builds

Creating GNU Makefile...
dist/bin/premake5: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.16' not found (required by dist/bin/premake5)

The premake binary expects to dynamic link to whatever version of the .so was on the machine that built the binary... we either need to explicitly be less fussy with the version number (ie, only specify major version), or in this case, just static link.

I might make a patch if I get a spare couple of hours to run the tests on a few machines.

anr2me commented 9 months ago

I have similar issue on CentOS 7, did you managed to create the patch? or found another solution may be?