Search Unity

DllNotFoundException

Discussion in 'Entity Component System' started by Coed, May 3, 2018.

  1. Coed

    Coed

    Joined:
    Feb 18, 2016
    Posts:
    13
    Hi,
    I downloaded sample projects of Unity github, but when I opened it I got DllNotFoundException. Unity can't find burst-llvm.dll despite the fact that the file is on this directory. I tried on 2018.1.0f1 and 2018.1.0f2 with the same same result, but 2018.1.0b21 (custom build) worked well. Scripts can be executed with this error but frame rate is very low and editor often crashes.
    I think the problem might be with my user folder name, it has Polish character in it, when I created another Windows account everything worked well, but migrating to new account might be troublesome.
    Do you have any idea how to fix it?
    dll1.PNG
     
  2. Spy-Shifty

    Spy-Shifty

    Joined:
    May 5, 2011
    Posts:
    546
    I don't know if this will work...

    Try to copy the packages from C:\User\...\AppData\... to you local Unity directory.

    Maybe into the package folder of you project or into the assetfolder.
     
  3. xoofx

    xoofx

    Unity Technologies

    Joined:
    Nov 5, 2016
    Posts:
    417
    Let me check If we can fix this, that might be indeed a problem with characters not handled properly here.
     
  4. xoofx

    xoofx

    Unity Technologies

    Joined:
    Nov 5, 2016
    Posts:
    417
    Ok, this should be fixed in the latest version. This should be hopefully released later today. Sorry for the trouble ;)
     
  5. Coed

    Coed

    Joined:
    Feb 18, 2016
    Posts:
    13
    Thank you! I will let you know if it fix the problem.
    You mean new verision of the package, that I can download with Package Manager?
     
  6. fabrizio_unity

    fabrizio_unity

    Unity Technologies

    Joined:
    May 3, 2018
    Posts:
    47
    We released a new version of the burst package. In order to use it, copy and paste the following in the manifest.json file inside the Samples/Packages folder:

    {
    "dependencies": {
    "com.unity.incrementalcompiler": "0.0.38",
    "com.unity.entities": "0.0.12-preview.1",
    "com.unity.burst": "0.2.4-preview.4"
    },
    "registry": "https://staging-packages.unity.com",
    "testables": [
    "com.unity.collections",
    "com.unity.entities",
    "com.unity.jobs"
    ]
    }

    Unfortunately the update is not visible from the package manager UI yet, but we are working on it.
    Let us know if you encounter any problem or if it doesn't fix the issue.
     
  7. Coed

    Coed

    Joined:
    Feb 18, 2016
    Posts:
    13
    Yeah, it works now, thanks!
     
    fabrizio_unity and xoofx like this.