Forum
    • Categories
    • Register
    • Login
    1. Home
    2. jenö
    3. Topics
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 10
    • Groups 0

    Topics

    • J

      git pull develop branch giving me this error

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      3
      0 Votes
      3 Posts
      20 Views
      S

      @jenö I just got the same error, claud send me in the right direction. I opted for the stashing option.

      You have local changes to those files that would be overwritten. Since those are auto-generated Projucer files you probably don't need to keep, the easiest fix is to just discard them:
      git checkout -- "projects/standalone/HISE Standalone.jucer" "projects/standalone/JuceLibraryCode/AppConfig.h"
      git pull origin develop

      Or if you want to stash everything just in case:
      git stash
      git pull origin develop

      After that, run:
      git submodule update --init --recursive
      Note: you'll also see warnings about 3 submodules (api generator, hise_lsp_server, mcp_server) being inaccessible — those are likely private repos, so you can safely ignore those warnings. The important one is JUCE, which updated fine.

      However now I'm building, I'm getting this. My guess is something whent whoopsie;

      *unresolved external symbol "public: __cdecl hise::RestServer::RestServer(void)" (??0RestServer@hise@@QEAA@XZ)
      'unused': unreferenced local variable
      'unused': unreferenced local variable
      'unused': unreferenced local variable
      'unused': unreferenced local variable
      'hise::InteractionTestWindow': type name first seen using 'class' now seen using 'struct'
      'r': unreferenced local variable
      'unused': unreferenced local variable
      'unused': unreferenced local variable
      'e': unreferenced local variable
      'hise::areMajorWebsitesAvailable': unreferenced function with internal linkage has been removed
      ignoring '/INCREMENTAL' due to '/LTCG' specification
      unresolved external symbol "private: void __cdecl hise::RestServer::AsyncRequest::mergeLogsIntoResponse(void)" (?mergeLogsIntoResponse@AsyncRequest@RestServer@hise@@AEAAXXZ)
      unresolved external symbol "public: void __cdecl hise::RestServer::AsyncRequest::appendError(class juce::String const &,class juce::StringArray const &)" (?appendError@AsyncRequest@RestServer@hise@@QEAAXAEBVString@juce@@AEBVStringArray@5@@Z)
      unresolved external symbol "public: void __cdecl hise::RestServer::AsyncRequest::appendLog(class juce::String const &)" (?appendLog@AsyncRequest@RestServer@hise@@QEAAXAEBVString@juce@@@Z)
      unresolved external symbol "public: static struct hise::RestServer::Response __cdecl hise::RestServer::Response::error(int,class juce::String const &)" (?error@Response@RestServer@hise@@SA?AU123@HAEBVString@juce@@@Z)
      unresolved external symbol "public: static struct hise::RestServer::Response __cdecl hise::RestServer::Response::ok(class juce::var const &)" (?ok@Response@RestServer@hise@@SA?AU123@AEBVvar@juce@@@Z)
      unresolved external symbol "public: class juce::var __cdecl hise::RestServer::Request::getJsonBody(void)const " (?getJsonBody@Request@RestServer@hise@@QEBA?AVvar@juce@@XZ)
      unresolved external symbol "public: class juce::String __cdecl hise::RestServer::Request::operator[](class juce::Identifier const &)const " (??ARequest@RestServer@hise@@QEBA?AVString@juce@@AEBVIdentifier@4@@Z)
      unresolved external symbol "public: void __cdecl hise::RestServer::removeListener(class hise::RestServer::Listener *)" (?removeListener@RestServer@hise@@QEAAXPEAVListener@12@@Z)
      unresolved external symbol "public: void __cdecl hise::RestServer::addListener(class hise::RestServer::Listener *)" (?addListener@RestServer@hise@@QEAAXPEAVListener@12@@Z)
      unresolved external symbol "public: int __cdecl hise::RestServer::getPort(void)const " (?getPort@RestServer@hise@@QEBAHXZ)
      unresolved external symbol "public: bool __cdecl hise::RestServer::isRunning(void)const " (?isRunning@RestServer@hise@@QEBA_NXZ)
      unresolved external symbol "public: void __cdecl hise::RestServer::stop(void)" (?stop@RestServer@hise@@QEAAXXZ)
      unresolved external symbol "public: bool __cdecl hise::RestServer::start(int,class juce::String const &)" (?start@RestServer@hise@@QEAA_NHAEBVString@juce@@@Z)
      unresolved external symbol "public: void __cdecl hise::RestServer::addAsyncRoute(enum hise::RestServer::Method,class juce::URL const &,class std::function<struct hise::RestServer::Response __cdecl(class juce::ReferenceCountedObjectPtr)>)" (?addAsyncRoute@RestServer@hise@@QEAAXW4Method@12@AEBVURL@juce@@V?$function@$$A6A?AUResponse@RestServer@hise@@V?$ReferenceCountedObjectPtr@VAsyncRequest@RestServer@hise@@@juce@@@Z@std@@@Z)
      unresolved external symbol "public: class juce::URL __cdecl hise::RestServer::getBaseURL(void)const " (?getBaseURL@RestServer@hise@@QEBA?AVURL@juce@@XZ)
      unresolved external symbol "public: __cdecl hise::RestServer::~RestServer(void)" (??1RestServer@hise@@QEAA@XZ)
      unresolved external symbol "public: static void __cdecl hise::RestServer::forceRepaintWindow(void )" (?forceRepaintWindow@RestServer@hise@@SAXPEAX@Z)
      18 unresolved externals

    • J

      DSP network compile export wizard bug Windows

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      87 Views
      No one has replied
    • J

      EHX Freeze pedal with scriptnode

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      5
      0 Votes
      5 Posts
      251 Views
      J

      @ustk Ah I see. I have a working algorythm in Pure Data, is there a way to implement that in HISE as script och c++ code? In PlugData (a flavor of PD), you can export C++ code.

    • J

      Problem building latest develop branch

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      387 Views
      LindonL

      @jenö hmm, these are odd - looks like the download didnt work for you somehow.... can you download manually and retry?

    • J

      HISE 4.1 release vs compiling from dev branch

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      1k Views
      J

      @d-healey thanks, I will try again!