Forum
    • Categories
    • Register
    • Login

    Build Failed - Missing JUCE 'modules' ?

    Scheduled Pinned Locked Moved Unsolved Scripting
    63 Posts 5 Posters 156 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • HISEnbergH
      HISEnberg @Chazrox
      last edited by

      @Chazrox said in Build Failed - Missing JUCE 'modules' ?:

      script_fx.xml

      So I used your snippet and saved it to my project. The result is almost the exact same:

      <?xml version="1.0" encoding="UTF-8"?>
      
      <Network ID="script_fx" AllowCompilation="1" Version="0.0.0">
        <Node FactoryPath="container.chain" ID="script_fx" Bypassed="0" Name="script_fx">
          <Nodes>
            <Node ID="gain" FactoryPath="core.gain" Bypassed="0" Name="gain">
              <Parameters>
                <Parameter MinValue="-100.0" MaxValue="0.0" StepSize="0.1000000014901161"
                           SkewFactor="5.422270774841309" ID="Gain" TextToValueConverter="Decibel"
                           Value="0.0"/>
                <Parameter MinValue="0.0" MaxValue="1000.0" StepSize="0.1000000014901161"
                           SkewFactor="0.3010300099849701" ID="Smoothing" TextToValueConverter="Time"
                           Value="20.0"/>
                <Parameter MinValue="-100.0" MaxValue="0.0" StepSize="0.1000000014901161"
                           SkewFactor="5.422270774841309" ID="ResetValue" TextToValueConverter="Decibel"
                           Value="0.0"/>
              </Parameters>
            </Node>
          </Nodes>
          <Parameters/>
        </Node>
      </Network>
      

      But yours is missing the formatting version: <?xml version="1.0" encoding="UTF-8"?>

      Why I do not know!

      Sonic Architect && Software Mercenary

      ChazroxC 1 Reply Last reply Reply Quote 0
      • ChazroxC
        Chazrox @HISEnberg
        last edited by Chazrox

        @HISEnberg Ok great! Thats good news to me. lol At least it seems we're getting closer to the cause. Thank you for trying that!

        HISEnbergH 1 Reply Last reply Reply Quote 0
        • ChazroxC
          Chazrox
          last edited by Chazrox

          I didnt wanna tag you @Christoph-Hart but it seems its getting a little weird on this one. 🙏 Any insight?

          I've mentioned above but just wanted to reiterate that i've been trying to solve this for about a year now and have no clue what it can be. I've tried fresh installs and everything else suggested to me so far. I suspect its something specific to my system, not your fault, but Im not experienced enough to hunt this down.

          1 Reply Last reply Reply Quote 0
          • HISEnbergH
            HISEnberg @Chazrox
            last edited by

            @Chazrox Yes, maybe just double check. I'm not sure this is the case or if because I am launching the file you sent from the web.

            Screenshot 2026-06-05 at 12.04.00 PM.png

            Sonic Architect && Software Mercenary

            ChazroxC 1 Reply Last reply Reply Quote 0
            • ChazroxC
              Chazrox @HISEnberg
              last edited by

              @HISEnberg So thats why I keep getting the "cant compile: chain" as if its an empty node?....hmmm.

              HISEnbergH 1 Reply Last reply Reply Quote 0
              • HISEnbergH
                HISEnberg @Chazrox
                last edited by

                @Chazrox Quite possibly. You could launch the xml in a code editor. Copy and paste the version I sent then try to compile again.

                Sonic Architect && Software Mercenary

                ChazroxC 1 Reply Last reply Reply Quote 0
                • ChazroxC
                  Chazrox @HISEnberg
                  last edited by

                  @HISEnberg just tried that. Still this error.

                  Screenshot 2026-06-05 at 9.09.00 AM.png

                  1 Reply Last reply Reply Quote 0
                  • ChazroxC
                    Chazrox
                    last edited by

                    I really appreciate all the help on this from you guys because Im out of my league at this point.

                    HISEnbergH 1 Reply Last reply Reply Quote 0
                    • HISEnbergH
                      HISEnberg @Chazrox
                      last edited by

                      @Chazrox Yea sorry I couldn't be more helpful, it seems like my initial suspicions were wrong here.

                      Another thing to try, I notice your main folder is called "HISE Projects". Sometimes a space like that can throw the compiler off (a better name is just HISEProjects, no space). This probably isn't the issue but worth trying.

                      When you hit that compile to dll button in HISE, there is a bash script that runs which sets up projucer and creates an xcode project, then compiles the dll. It's in DspNetworks/Binaries/batchCompileOSX.sh

                      For me it looks like this:

                      #!/bin/bash
                      PATH="/usr/local/bin:$PATH"
                      chmod +x "/Users/ernest/Github/HISE/JUCE/Projucer/Projucer.app/Contents/MacOS/Projucer"
                      cd "`dirname "$0"`"
                      "/Users/ernest/Github/HISE/JUCE/Projucer/Projucer.app/Contents/MacOS/Projucer" --resave AutogeneratedProject.jucer
                      
                      set -o pipefail
                      echo Compiling  DeleteMe ...
                      xcodebuild -project "Builds/MacOSX/DeleteMe.xcodeproj" -configuration "Release" -jobs "8" | "/Users/ernest/Github/HISE/tools/Projucer/xcbeautify"
                      

                      But it sounds like whatever issue you are having fails before this key file is ever even generated.

                      Sonic Architect && Software Mercenary

                      ChazroxC 2 Replies Last reply Reply Quote 0
                      • ChazroxC
                        Chazrox @HISEnberg
                        last edited by Chazrox

                        @HISEnberg No worries I really appreciate it. Im down to try that. If I just change the name of the folder will that mess up any of my projects in it? Is this also the case for naming conventions in general? Project names and node names?

                        1 Reply Last reply Reply Quote 0
                        • ChazroxC
                          Chazrox
                          last edited by

                          Do I need to set this?

                          Screenshot 2026-06-05 at 9.37.46 AM.png

                          1 Reply Last reply Reply Quote 0
                          • ChazroxC
                            Chazrox
                            last edited by Chazrox

                            update from Claude reading latest crash report:

                            Screenshot 2026-06-05 at 9.40.57 AM.png

                            I dont think its a HISE bug but maybe something here is telling of something else?

                            1 Reply Last reply Reply Quote 0
                            • ChazroxC
                              Chazrox @HISEnberg
                              last edited by Chazrox

                              @HISEnberg Just letting you know, I tried changing the name to my folder and still get the error/crash.

                              HISEnbergH 1 Reply Last reply Reply Quote 0
                              • ChazroxC
                                Chazrox
                                last edited by

                                @David-Healey In my new hise build, I cant find the setup wizard that lets me extract the sdk's and I noticed in settings "Setup Wizard = 1" . Does that mean its already setup by default?

                                1 Reply Last reply Reply Quote 0
                                • HISEnbergH
                                  HISEnberg @Chazrox
                                  last edited by

                                  @Chazrox Yea that won't resolve it. The no-space rule in naming files is somewhat ancient at this point, most of the time the compiler will resolve it.

                                  You also don't need the Custom Node Path set.

                                  The Export or Setup Wizard I believe has been abandoned which is why it's no longer there.

                                  Sonic Architect && Software Mercenary

                                  ChazroxC 1 Reply Last reply Reply Quote 0
                                  • ChazroxC
                                    Chazrox @HISEnberg
                                    last edited by Chazrox

                                    @HISEnberg I just found Davids updated video regarding sdk's. Im going to continue trying. Thank you.

                                    ***UPDATE:

                                    My test project will compile and export as an FX plugin but still its just not compiling my networks to dll.

                                    1 Reply Last reply Reply Quote 1
                                    • ChazroxC
                                      Chazrox
                                      last edited by

                                      Is there any difference in creating a node with these two options?

                                      Screenshot 2026-06-05 at 10.04.18 AM.png

                                      Im trying both to see what works but still same result.

                                      1 Reply Last reply Reply Quote 0
                                      • ChazroxC
                                        Chazrox
                                        last edited by Chazrox

                                        I just tried a to fix with Claude and this is its response:

                                        Screenshot 2026-06-05 at 11.15.34 AM.png

                                        Does that mean im screwed? lol

                                        The new HISE build is working great aside from not being able to compile networks still...Something is really screwed up over here.

                                        @David-Healey @HISEnberg

                                        1 Reply Last reply Reply Quote 0
                                        • First post
                                          Last post

                                        23

                                        Online

                                        2.4k

                                        Users

                                        13.8k

                                        Topics

                                        119.6k

                                        Posts