mitxela.com forum
Welcome. Please log in or register.

help compile freeverb from source
fve Posted: 8 Aug 2021, 08:15 PM
Avatar


Member
Posts: 1
Joined: 8-August 21
Ihave read the vsti manual here but cannot compile 64bit .so for linux? Can anyone compile it? source here https://web.archive.org/web/20010124154500fw_/http://home.onet.co.uk/~jzracc/plugins/freeverbsource.zip
In tuning.h put stereospread to 0 to disable phase breaking

-------------
[top]
mit Posted: 29 Aug 2021, 11:10 AM
Avatar
yeah whatever

Admin
Posts: 567
Joined: 4-May 16
I haven't tried it, but it should be possible. Tom managed to get a linux .so file out of that same tutorial but I don't remember exactly what was required.

-------------
[top]
tsprlng Posted: 3 Oct 2021, 01:22 AM
Avatar
hapless technoweenie

Member
Posts: 4
Joined: 9-June 17
Hi, this is probably pointlessly late but I had a look what I was doing for the last VST project. Nothing obviously special. I don't have the SDK any more so can't test or mess around, but here's my makefile:


.PHONY: clean vst install

CC = g++
WIN_CC = i686-w64-mingw32-g++

all: vst

clean:
rm -f my_vst.so my_vst.dll

install: vst
ln -srf ./my_vst.so ~/.vst/

vst: my_vst.so my_vst.dll
my_vst.so: my_vst.cpp
${CC} -shared -o my_vst.so -I vstsdk2.4 -fPIC -Wall -Wl,-z,defs vstsdk2.4/public.sdk/source/vst2.x/*.cpp my_vst.cpp
my_vst.dll: my_vst.cpp
${WIN_CC} -static -shared -o my_vst.dll -I vstsdk2.4 -fPIC -Wall vstsdk2.4/public.sdk/source/vst2.x/*.cpp my_vst.cpp


-------------
[top]

Sign in to post a reply.