mohsenph69 / Godot-MTerrain-plugin

A GDExtension plugin which give godot the ability to produce highly optimized Terrain for Open world games
MIT License
372 stars 19 forks source link

Error: version `GLIBC_2.38' not found #6

Closed nickpolet closed 9 months ago

nickpolet commented 9 months ago

Trying to install through the AssetLib tab in Godot 4.1.1(official), using Ubuntu 22.04.

The files download fine, but the error below appears when trying to enable the plugin.

image


This seems to be something to do with glibc, but I'm not sure exactly what the issue is here. Any ideas?

mohsenph69 commented 9 months ago

I think the GDExtension lib want glibc with higher version, it seems the minimum accepted version of glibc is 2.38

Look what is your version?

Try to update your Linux maybe that will fix that, OR you can build the GDExtension lib that by yourself and see if that will work

prfiredragon commented 9 months ago

Same issue. I build it from source and works.

nickpolet commented 9 months ago

Yep, I built from source and it works well.

Thanks all.