Search Unity

  1. Unity Asset Manager is now available in public beta. Try it out now and join the conversation here in the forums.
    Dismiss Notice
  2. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  3. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Question How can i build one of demos?

Discussion in 'Project Tiny' started by unclejey34, Oct 5, 2021.

  1. unclejey34

    unclejey34

    Joined:
    Dec 21, 2017
    Posts:
    53
    Code (CSharp):
    1. Build DotsRuntimeBuildConfiguration failed after 50.86s.
    2. [             ] Require frontend run.  artifacts\tundra_tinygems-dotsruntimebuildconfiguration_vci.dag.json does not exist yet
    3. [             ] Require frontend run.  artifacts\buildprogram\tundra_buildprogram.dag.json does not exist yet
    4. [             ] Require frontend run.  artifacts\buildprogram\buildprogram_buildprogram.dag.json does not exist yet
    5. [           0s] Freezing buildprogram_buildprogram.dag.json into .dag (.dag file didn't exist)
    6. [0/7        0s] CSProject buildprogram-build.gen.csproj
    7. [1/7        0s] WriteResponseFile artifacts/rsp/3205345334039319834.rsp
    8. [2/7        0s] Download and unpack artifacts/buildprogrambuildprogram/Stevedore/7za-win-x64_a333/.StevedoreVersion (+1 other)
    9. [3/7        0s] Download and unpack artifacts/buildprogrambuildprogram/Stevedore/referenceassemblies_v471_a0c3/.StevedoreVersion (+1 other)
    10. [4/7        3s] Download and unpack artifacts/buildprogrambuildprogram/Stevedore/roslyn-csc-win64_6e5a/.StevedoreVersion (+1 other)
    11. [5/7        3s] Csc artifacts/buildprogram/buildprogram_buildprogram.exe (+2 others)
    12. [           0s] Destroying Roslyn Shared Compiler Server
    13. *** buildprogrambuildprogram build success (11.75 seconds), 6 items updated, 7 evaluated
    14. [           0s] Freezing tundra_buildprogram.dag.json into .dag (.dag file didn't exist)
    15. [ 0/13      0s] CSProject D:/temp/ProjectTinySamples/TinyGems/Library/PackageCache/com.unity.dots.runtime@0.32.0-preview.54/bee~/BuildProgramBuildProgramSources/buildprogrambuildprogram.gen.csproj
    16. [ 1/13      0s] WriteResponseFile artifacts/rsp/16678227308262555357.rsp
    17. [ 2/13      0s] WriteResponseFile artifacts/rsp/1008532451738831585.rsp
    18. [ 3/13      0s] CSProject D:/temp/ProjectTinySamples/TinyGems/Library/DotsRuntimeBuild/buildprogram.gen.csproj
    19. [ 4/13      0s] VisualStudioSolution build.gen.sln
    20. [ 5/13      0s] CopyTool artifacts/buildprogrambuildprogram.exe/Release/bee.exe
    21. [ 6/13      0s] CopyTool artifacts/buildprogram/bee.exe
    22. [ 7/13      0s] Download and unpack artifacts/Stevedore/7za-win-x64_0d1e/.StevedoreVersion (+1 other)
    23. [ 8/13      0s] Download and unpack artifacts/Stevedore/referenceassemblies_v471_a0c3/.StevedoreVersion (+1 other)
    24. [ 9/13      3s] Download and unpack artifacts/Stevedore/roslyn-csc-win64_7bcb/.StevedoreVersion (+1 other)
    25. [10/13      3s] Csc artifacts/buildprogrambuildprogram.exe/Release/buildprogrambuildprogram.exe (+2 others)
    26. [11/13      3s] Csc artifacts/buildprogram/buildprogram.exe (+2 others)
    27. [           0s] Destroying Roslyn Shared Compiler Server
    28. *** buildprogram build success (10.36 seconds), 12 items updated, 13 evaluated
    29. error: WindowsDummySdk has not provided information on how to actually invoke the C++ compiler (C_Win64_). (System.InvalidOperationException)
    30.   at Bee.NativeProgramSupport.CLikeCompiler.SetupInvocation
    31.   at Bee.NativeProgramSupport.NativeProgram.SetupObjectFilesAndSetupBuiltNativeProgram
    32.   at Bee.NativeProgramSupport.NativeProgram.SetupSpecificConfigurationImpl
    33.   at Bee.NativeProgramSupport.NativeProgram.SetupSpecificConfiguration
    34.   at WebPBuildCustomizer.Customize
    35.   at DotsBuildCustomizer.RunAllCustomizers
    36.   at BuildProgram.Main
    37.   at System.RuntimeMethodHandle.InvokeMethod
    38.   at Bee.StandaloneBeeDriver.CreateBuildGraph
    39.   at Bee.StandaloneBeeDriver.InvokeTundra
    40.   at Bee.StandaloneBeeDriver.BuildMain
    41.   at Bee.StandaloneBeeDriver.Main
    42.  
    Having error
     
  2. Shaun-Peoples

    Shaun-Peoples

    Joined:
    Feb 26, 2013
    Posts:
    24
    You're likely missing the WindowsSDK or other library. I ran into this the other day and solved it by adding things.

    In the Visual Studio Installer choose "Modify" then add "Desktop development with C++" and possibly ".NET desktop development" (not 100% on which of these is required, it's kind of a guess attempt at times).

    Reboot if necessary and that should get you going.
     
    unclejey34 likes this.
  3. unclejey34

    unclejey34

    Joined:
    Dec 21, 2017
    Posts:
    53
    Thanks man!