RNBO on Patchbox OS

The steps I took:

  1. Basic setup
    1. Installed clean Patchbox OS Bookworm ARM64 2024-04-04 image on an SD card and put it in my RPi 3B+ (I was on the bullseye based Patchbox OS before, but c74 has stopped supporting it since RNBO 1.3.0)
    2. Completed the initial wizard, set jack setting, installed puredata module and set my wifi so that I could ssh to RPi
    3. Updated installed packages
  2. rnbooscquery build steps base on source repo readme
    1. installed dependecies:
      sudo apt-get -y install cmake build-essential libavahi-compat-libdnssd-dev libssl-dev libjack-jackd2-dev libdbus-1-dev libxml2-dev libgmock-dev google-mock libsdbus-c++-dev python3-pip ruby libsndfile1-dev

    2. copied the rnbo src files from my Win machine to RPi. I have RNBO 1.4.3 installed via package manager so I took the source from %HOMEPATH%\Documents\Max 9\Packages\RNBO\source\rnbo and put it in ~/Downloads/rnbooscquery so that now I have this:

      image

    3. making the build:
      mkdir build/
      cd build/
      cmake .. -DRNBO_DIR=~/Downloads/rnbooscquery/
      cmake --build .
      cpack

    4. result:

      – The C compiler identification is GNU 12.2.0
      – The CXX compiler identification is GNU 12.2.0
      – Detecting C compiler ABI info
      – Detecting C compiler ABI info - done
      – Check for working C compiler: /usr/bin/cc - skipped
      – Detecting C compile features
      – Detecting C compile features - done
      – Detecting CXX compiler ABI info
      – Detecting CXX compiler ABI info - done
      – Check for working CXX compiler: /usr/bin/c++ - skipped
      – Detecting CXX compile features
      – Detecting CXX compile features - done
      – Configuring done
      – Generating done
      CMake Warning:
      Manually-specified variables were not used by the project:
      
      RNBO_DIR
      
      – Build files have been written to: /home/patch/Downloads/rnbooscquery/build
      CPack Error: CPack generator not specified
      

Attached is the CMakeList from the source and the CMakeOutput.log generated as a result of the above. Thank you for the help Giedrius

CMakeLists.txt (1.7 KB)

CMakeOutput.log (43.2 KB)