Alf Marius
Alf Marius
Is anyone working on `report_csv` ? I needed this in v17, so I made some very minor changes to make it work. 1. Update version  2. Fix attrs ...
For the reference from that other issue.. https://github.com/KottV/Vaporizer2/blob/linux-fixes/VASTvaporizer/Source/Plugin/VASTAudioProcessor.h#L254 I tried to set this to `true` and compile. UI still has problems, doesn't work properly and crashes in the end.
Yea, same here... I tried building it according to instructions in a docker container with all deps ``` FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt update && apt install \ build-essential...
Nice find @BillyDM ! Thanks for updating the repo @KottV ! I still have some problems with this one though.. ``` ../../Source/Engine/Filter/../Utils/VASTSynthfunctions.h:1070:25: error: 'arc4random' was not declared in this scope;...
ps, here's my updated `Dockerfile` ``` FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt update && apt install -y --no-install-recommends \ build-essential \ g++ \ libasound2-dev \ libjack-jackd2-dev \ ladspa-sdk \ libcurl4-openssl-dev...
I'm personally using EndeavourOS, but I like to do most of compiling stuff in a docker container so my system stays clean from all sorts of different dependencies. I will...
Probably have to use Debian 12. Will try later tonight https://sources.debian.org/src/glibc/
All right! It now builds.. ..but the plugin crashes hard :( `libcurl4-openssl-dev` was definetly needed it seems, but like you said the other two didn'tn ``` 17.96 In file included...
Ok, so I started digging some more.. I thought I might build in an arch linux environment Here's the `Dockerfile` that worked: ``` FROM archlinux:base-20231001.0.182270 RUN pacman -Sy RUN pacman...
I did one last try on this... went through all the dependencies found here for ubuntu/debian and tried to find the arch equivalent.. https://github.com/juce-framework/JUCE/blob/master/docs/Linux%20Dependencies.md ``` FROM archlinux:base-20231001.0.182270 RUN pacman -Sy...