Search Unity

[SOLVED] Blank window after project open

Discussion in 'Linux' started by DMinsky, Dec 23, 2016.

  1. DMinsky

    DMinsky

    Joined:
    May 20, 2012
    Posts:
    30
    Hi, I'm using Fedora 25 with 4.8.6-300.fc25.x86_64 kernel. After project open I get empty white Unity editor window. Log is in attachment. Any ideas?
     

    Attached Files:

  2. Tak

    Tak

    Joined:
    Mar 8, 2010
    Posts:
    1,001
    It looks like your installation might be corrupted (for example, it can't find the shader compiler executable).
     
  3. DMinsky

    DMinsky

    Joined:
    May 20, 2012
    Posts:
    30
    Thanks, @Tak but actually UnityShaderCompiler is in place
    Code (bash):
    1. [dminsky@localhost Downloads]$ ls /home/dminsky/Downloads/unity-editor-5.5.0xf3Linux/Editor/Data/Tools/UnityShaderCompiler -l
    2. -rwxr-xr-x. 1 dminsky dminsky 4666611 Nov 25 19:19 /home/dminsky/Downloads/unity-editor-5.5.0xf3Linux/Editor/Data/Tools/UnityShaderCompiler
    Also, I removed p1 and installed f3 of 5.5 - same result.
     
    Last edited: Dec 23, 2016
  4. DMinsky

    DMinsky

    Joined:
    May 20, 2012
    Posts:
    30
    I tried to launch UnityShaderCompiler from Unity/Editor/Data/Tools/ folder:

    Code (bash):
    1. [dminsky@dhcppc7 Tools]$ ./UnityShaderCompiler
    2. bash: ./UnityShaderCompiler: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
    You can see that error if you don't have i686 version of glibc, so
    $ sudo dnf install glibc.i686

    Next try:
    Code (bash):
    1. [dminsky@dhcppc7 Tools]$ ./UnityShaderCompiler
    2. bash: ./UnityShaderCompiler: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
    That one is simple:
    $ sudo dnf install libstdc++.i686

    So, if you see this in Editor.log:
    Now you know what to do ;)
    p.s. kudos to @tswalk and his post