Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Yes, I was thinking that same. ;) Unfortunately, it requires the most important system library and almost half of the system. :( It could end with additional 1 GB to download, eh. I'm thinking how to solve this problem but all my tries for now were unsuccessful.

(2 edits) (+1)

>:~$ ldd /lib/x86_64-linux-gnu/libc.so.6

    /lib64/ld-linux-x86-64.so.2 (0x00007f3f00017000)
    linux-vdso.so.1 (0x00007ffd795f6000)

you mean

i don't see the dependencies yet?  its just seems to be libc alone that's missing.

The problem is that is the start of the dependencies, not the end. :) If we want to ship custom libc, we have to build also every other library which is needed for the game.

Normally, these libraries included into the system. But they are compiled with the system's libc. In our situation, it would be some X server libraries too. I'm guessing how much space it would be taken. If you want to see, what need to be rebuilt, you will need to unpack the game to get executable and do “ldd” command on it. It should give a full list what is needed. 

(+1)

this isn't windows. any version of libc can call the kernel; but i defer to your experience.