Tiny Glade

Tiny Glade

 This topic has been pinned, so it's probably important
anopara  [developer] May 30 @ 7:25am
[Demo] Bug reports
For bug reports, the best way to send them our way is to use our in-game report tool summoned via F6 🙏 This way we can get additional info that will help us solve the issue. We read and sort every report we receive 🙇‍♀️

If the game crashed for you, the game will allow you to send a crash report. We will be grateful if you do!

If the game fails to start for you or runs slowly, please check our troubleshooting guide.

Since only two of us will be processing the reports (Ana & Tom), our responsiveness in Steam forums might be limited based on how many things we're juggling at the moment 🤹‍♀️🤹‍♂️ However, we try to read every comment 💗

Thank you for taking the time to report issues & helping us make the game better! 🙇‍♀️
Last edited by anopara; May 30 @ 7:41am
< >
Showing 1-15 of 137 comments
MrΩ May 30 @ 10:12am 
/mnt/64fast/SteamLibrary/steamapps/common/Tiny Glade Demo/tiny-glade: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory

You have to distribute your GFX toolkit on top of x11/wayland. An elf/linux distro can be Qt/enlightement/gtk2/gtk4/raw/other only. You can expect only expect x11/wayland for the window system.

With the "readelf -a -W tiny-glade" command you can see what are the dependencies of tiny-glade binary. The NEEDED entries are:

0x0000000000000001 (NEEDED) Shared library: [libgtk-3.so.0]
107 0x0000000000000001 (NEEDED) Shared library: [libgdk-3.so.0]
108 0x0000000000000001 (NEEDED) Shared library: [libpangocairo-1.0.so.0]
109 0x0000000000000001 (NEEDED) Shared library: [libpango-1.0.so.0]
110 0x0000000000000001 (NEEDED) Shared library: [libcairo.so.2]
111 0x0000000000000001 (NEEDED) Shared library: [libgobject-2.0.so.0]
112 0x0000000000000001 (NEEDED) Shared library: [libglib-2.0.so.0]
113 0x0000000000000001 (NEEDED) Shared library: [libdl.so.2]
114 0x0000000000000001 (NEEDED) Shared library: [libsteam_api.so]
115 0x0000000000000001 (NEEDED) Shared library: [libembree4.so.4]
116 0x0000000000000001 (NEEDED) Shared library: [libfmodstudio.so.13]
117 0x0000000000000001 (NEEDED) Shared library: [libfmod.so.13]
118 0x0000000000000001 (NEEDED) Shared library: [libgcc_s.so.1]
119 0x0000000000000001 (NEEDED) Shared library: [librt.so.1]
120 0x0000000000000001 (NEEDED) Shared library: [libpthread.so.0]
121 0x0000000000000001 (NEEDED) Shared library: [libm.so.6]
122 0x0000000000000001 (NEEDED) Shared library: [libc.so.6]
123 0x0000000000000001 (NEEDED) Shared library: [ld-linux-x86-64.so.2]

BTW, you did forget the "-static-libgcc" compilation/linking option because you have a libgcc_s.so.1 NEEDED entry.

You would have to audit all your distributed ELF binaries the same way, even third-party to see if they do not introduce excessive dependencies.

----

In NEEDED entries, you should have only glibc libs: libdl.so.2,librt.so.1,libpthread.so.0,libm.so.6,libc.so.6,ld-linux-x86-64.so.2

Everything else should be libdl-ed.
Last edited by MrΩ; May 30 @ 10:32am
Demo is not playable. Crashes with every start
h3r2tic  [developer] May 30 @ 10:53am 
Originally posted by MrΩ:
/mnt/64fast/SteamLibrary/steamapps/common/Tiny Glade Demo/tiny-glade: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory

Thanks for the detailed report! We'll have another look at our Linux build system. Regarding libgtk-3.so.0 though, I believe we can't distribute it, and you'll have to have it on your system 👀
h3r2tic  [developer] May 30 @ 10:55am 
Originally posted by farinelli1800:
Demo is not playable. Crashes with every start

Thanks for reporting! You're welcome to also send us a crash report when the crash happens (using the tool that pops up), and we'll look into it. For what it's worth, we've tested the game on a range of GTX and RTX cards (along with Intel and AMD), but we may have missed something. Are your drivers up-to-date?
MrΩ May 30 @ 10:56am 
Cannot distribute GTK+ binaries? huh? As far as I know you can. Worst case scenario, you statically link all that into your binary.
Last edited by MrΩ; May 30 @ 11:03am
Originally posted by h3r2tic:
Originally posted by farinelli1800:
Demo is not playable. Crashes with every start

Thanks for reporting! You're welcome to also send us a crash report when the crash happens (using the tool that pops up), and we'll look into it. For what it's worth, we've tested the game on a range of GTX and RTX cards (along with Intel and AMD), but we may have missed something. Are your drivers up-to-date?
My drivers allways are up to date.....could it be that especially the latest geforce RTX driver is not good for this game? Perhaps I have to install the past driver
Last edited by farinelli1800; May 30 @ 11:02am
h3r2tic  [developer] May 30 @ 11:04am 
Originally posted by MrΩ:
Cannot distribute binaries GTK+? huh? As far as I know you can.

I haven't shipped many things to Linux, so could be wrong, but to my understanding, even though the LGPL license allows distribution, GTK itself would rely on more libraries. We'd end up distributing half of a desktop environment if we want to cover it.

I'll do some more reading on it :)
h3r2tic  [developer] May 30 @ 11:06am 
Originally posted by farinelli1800:
My drivers allways are up to date.....could it be that especially the latest geforce RTX driver is not good for this game? Perhaps I have to install the past driver

I've tried the latest driver with my RTX 2080, so in theory it should be fine... maybe try the clean installation? Tiny Glade uses Vulkan, and perhaps the Vulkan component of your driver is somehow damaged :o
bakapilea May 30 @ 11:07am 
Hello, when I start the game, I have a error message "Your graphics driver does not support Vulkan graphics", my drivers are up to date, I have a RYX 2060"
Originally posted by h3r2tic:
Originally posted by farinelli1800:
My drivers allways are up to date.....could it be that especially the latest geforce RTX driver is not good for this game? Perhaps I have to install the past driver

I've tried the latest driver with my RTX 2080, so in theory it should be fine... maybe try the clean installation? Tiny Glade uses Vulkan, and perhaps the Vulkan component of your driver is somehow damaged :o
I wonder because absolute every other actual game runs without any problem on my pc, only Tiny Glade crashes and dont start
I cant imagine that its a problem with the driver...the driver is fine
h3r2tic  [developer] May 30 @ 11:11am 
Originally posted by farinelli1800:
Originally posted by h3r2tic:
I wonder because absolute every other actual game runs without any problem on my pc, only Tiny Glade crashes and dont start

We have our own game engine, and it's the first time that we're testing it with such a large group of people, so unfortunately some issues like this are bound to pop up. Sorry that you're experiencing the bumpy start, but thanks for letting us know about it!
h3r2tic  [developer] May 30 @ 11:18am 
Originally posted by bakapilea:
Hello, when I start the game, I have a error message "Your graphics driver does not support Vulkan graphics", my drivers are up to date, I have a RYX 2060"

Hey, we've seen an issue where someone has an up-to-date driver, but for some reason their "vulkan-1.dll" file cannot be loaded. Can you please check that you have one in your "C:\windows\system32" folder?

If it's missing, it could be a matter of reinstalling the graphics driver, or perhaps manually installing the Vulkan runtime[sdk.lunarg.com].

Sorry about this, we'll continue investigating on our end 💚
farinelli1800 May 30 @ 11:19am 
Originally posted by h3r2tic:
Originally posted by farinelli1800:

We have our own game engine, and it's the first time that we're testing it with such a large group of people, so unfortunately some issues like this are bound to pop up. Sorry that you're experiencing the bumpy start, but thanks for letting us know about it!
Its a pity for me that I cant play the demo, but I hope, the complete game will be fine. I really want to play this game :-)
My monitor just shuts off when I launch the game because it gets no signal. I can hear the game running though and alt f4 turns my monitor back on. Already tried turning Gsync and HDR off but that didnt help.
< >
Showing 1-15 of 137 comments
Per page: 1530 50