HISE Logo Forum
    • Categories
    • Register
    • Login

    Compiling problems

    Scheduled Pinned Locked Moved Solved General Questions
    14 Posts 3 Posters 766 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.
    • S
      Sampletekk
      last edited by

      Hi there!

      Newbie question: I've downloaded the latest version of HISE from Github, opened the HISE Standalone Projucer, and I'm getting this:

      Skärmavbild 2023-11-24 kl. 11.17.46.png

      To what folder should I point it to?
      Also, I get this:

      Skärmavbild 2023-11-24 kl. 11.19.15.png

      Should I download that?

      Best,
      Per

      d.healeyD 1 Reply Last reply Reply Quote 0
      • d.healeyD
        d.healey @Sampletekk
        last edited by d.healey

        @Sampletekk click don't ask again for both

        Libre Wave - Freedom respecting instruments and effects
        My Patreon - HISE tutorials
        YouTube Channel - Public HISE tutorials

        S 1 Reply Last reply Reply Quote 0
        • S
          Sampletekk @d.healey
          last edited by

          @d-healey Thanks for quick answer! I click on "Save Project and ope in IDE" and XCode opens. The menu for "Compile File" isn't active. What do I do in XCode?

          Skärmavbild 2023-11-24 kl. 11.30.21.png

          LindonL 1 Reply Last reply Reply Quote 0
          • LindonL
            Lindon @Sampletekk
            last edited by

            @Sampletekk if I recall correctly Project>Compile>Build for Profiling

            HISE Development for hire.
            www.channelrobot.com

            S 1 Reply Last reply Reply Quote 0
            • S
              Sampletekk @Lindon
              last edited by

              @Lindon said in Compiling problems:

              @Sampletekk if I recall correctly Project>Compile>Build for Profiling

              Hi! Seems correct. Build fails however:

              Skärmavbild 2023-11-24 kl. 11.36.42.png

              1 Reply Last reply Reply Quote 0
              • d.healeyD
                d.healey
                last edited by

                Link Preview Image
                Build error on MacOS

                Seeing this today /hi_backend/backend/debug_components/FileBrowser.h:469:5: call to constructor of 'juce::URL' is ambiguous

                favicon

                Forum (forum.hise.audio)

                Libre Wave - Freedom respecting instruments and effects
                My Patreon - HISE tutorials
                YouTube Channel - Public HISE tutorials

                S 1 Reply Last reply Reply Quote 0
                • S
                  Sampletekk @d.healey
                  last edited by

                  @d-healey said in Compiling problems:

                  Link Preview Image
                  Build error on MacOS

                  Seeing this today /hi_backend/backend/debug_components/FileBrowser.h:469:5: call to constructor of 'juce::URL' is ambiguous

                  favicon

                  Forum (forum.hise.audio)

                  Ok, any way around this? Should I try to compile an older version of HISE? Btw, I'm on Ventura 13.6.1

                  d.healeyD 1 Reply Last reply Reply Quote 0
                  • d.healeyD
                    d.healey @Sampletekk
                    last edited by

                    @Sampletekk You can comment out or remove the line in the source code (that's what I did) or build an earlier commit.

                    Libre Wave - Freedom respecting instruments and effects
                    My Patreon - HISE tutorials
                    YouTube Channel - Public HISE tutorials

                    S 1 Reply Last reply Reply Quote 0
                    • S
                      Sampletekk @d.healey
                      last edited by

                      @d-healey said in Compiling problems:

                      @Sampletekk You can comment out or remove the line in the source code (that's what I did) or build an earlier commit.

                      This section I suppose:

                      	ResponseData():
                      	  ok(Result::fail("click to refresh issues")),
                      	  type(RequestType::numRequestTypes),
                      	  requested(false),
                      	  performed(false),
                      	  status(0),
                      	  url({})
                      	{}
                      

                      How would it look after removal? Like this?

                      	ResponseData():
                      	  ok(Result::fail("click to refresh issues")),
                      	  type(RequestType::numRequestTypes),
                      	  requested(false),
                      	  performed(false),
                      	  status(0)
                      	{}
                      
                      d.healeyD 1 Reply Last reply Reply Quote 0
                      • d.healeyD
                        d.healey @Sampletekk
                        last edited by

                        @Sampletekk Yup, you're now a C++ developer :party_popper:

                        Libre Wave - Freedom respecting instruments and effects
                        My Patreon - HISE tutorials
                        YouTube Channel - Public HISE tutorials

                        S 2 Replies Last reply Reply Quote 0
                        • S
                          Sampletekk @d.healey
                          last edited by

                          @d-healey said in Compiling problems:

                          @Sampletekk Yup, you're now a C++ developer :party_popper:

                          Wow, that was quick! Done my share in ksp, HALion scripting, Visual Basic and guess what: Cobol! (Guess my age....), but commas is important in all languages!

                          1 Reply Last reply Reply Quote 1
                          • S
                            Sampletekk @d.healey
                            last edited by

                            @d-healey said in Compiling problems:

                            @Sampletekk Yup, you're now a C++ developer :party_popper:

                            Success! One question: The app is called "HISE Debug", is that correct?
                            I ran the "Hise Standalone.jucer"

                            LindonL 1 Reply Last reply Reply Quote 0
                            • LindonL
                              Lindon @Sampletekk
                              last edited by

                              @Sampletekk said in Compiling problems:

                              @d-healey said in Compiling problems:

                              @Sampletekk Yup, you're now a C++ developer :party_popper:

                              Success! One question: The app is called "HISE Debug", is that correct?
                              I ran the "Hise Standalone.jucer"

                              make sure you did this:

                              Project>Compile>Build for Profiling

                              HISE Development for hire.
                              www.channelrobot.com

                              S 1 Reply Last reply Reply Quote 0
                              • S
                                Sampletekk @Lindon
                                last edited by

                                @Lindon said in Compiling problems:

                                @Sampletekk said in Compiling problems:

                                @d-healey said in Compiling problems:

                                @Sampletekk Yup, you're now a C++ developer :party_popper:

                                Success! One question: The app is called "HISE Debug", is that correct?
                                I ran the "Hise Standalone.jucer"

                                make sure you did this:

                                Project>Compile>Build for Profiling

                                Bingo!

                                1 Reply Last reply Reply Quote 0
                                • S Sampletekk has marked this topic as solved on
                                • First post
                                  Last post

                                24

                                Online

                                1.7k

                                Users

                                11.9k

                                Topics

                                103.5k

                                Posts