ryukau
ryukau
It's a bug on VST 3 SDK. The issue below has a solution to it. https://github.com/steinbergmedia/vst3sdk/issues/103 `#include ` is missing on `public.sdk/source/vst/moduleinfo/moduleinfoparser.cpp`.
Okay, this is the first time I see that error. This is just a guess, but try running `cmake` without `-j` as following. ```bash cmake --build . ``` Or, disabling...
Sorry for late reply. I haven't noticed the edit. It's probably better to add a new comment when there is progress, so that I can get email notification. Did you...
In addition to above comment: To check if core dump is produced, run following command. ```bash coredumpctl list | tail ``` Or, maybe `-1` option is sufficient instead of `tail`....
Steps to get debug information are following: 1. Edit top level `CMakeLists.txt` to reduce build time. 2. Build plugin in debug mode. 3. Attach gdb to Ardour and get backtrace....
I also found that Ardour has demo version for Windows. And the plugins on this repository worked on my Windows environment. So this issue seems specific to Ardour on Linux...
The error messages can be ignored. It is about missing optional config file. As you pointed out, the use of pre compiled version might be the cause. Perhaps try a...
Could you download [REAPER demo](https://www.reaper.fm/download.php), and see if the plugins work on there? After extracting the archive, REAPER executable is found at `reaper_linux_x86_64/REAPER/reaper`. Context: [This comment](https://github.com/osam-cologne/archlinux-proaudio/pull/162#issuecomment-1350388003) shows Linux environment I...
Hmm. I think we hit a wall. I looked into if all the required packages for VST 3 SDK contains static libraries. However, following packages are missing static library file...
I read somewhere that it might be possible to use the plugins, if both of Ardour and the plugins are built from source code.