-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VST SDK path #92
Comments
I found the mistake: Steinberg has changed the directory structure. You need to copy the two directories under the VST2 sub-directory to the directory where the VSTSDK_PATH is set. So one level down, basically. |
But installation went somewhere strange, I got: That is the root directory of my system where those directories where created. Now I'm not sure where to copy all that. To /usr/bin? How about the .so plugins? |
So, for creating the VST/SDK directory in the first place, can you just manually make a folder, or is there a terminal process needed? I'm kind of a noob when it comes to manually installing programs on linux. So, could I just make a new folder in home and name it VST/SDK? Then, extract the Steinberg tools, and take them out of the main folder? Ok, I got it... The folder needed to be named VST3 SDK in your home folder... If I could just read what the error tells me geez. |
Hmm I can't compile. When I make, I get until some point when I get this error: I have Wine-dev installed from WineHQ |
do I need the SDK if I've installed airwave with .deb ? |
I've tried dozens of different paths and also moving folders around in the SDK from Steinberg, but no matter what I do I keep getting an error message that the SDK cannot be found or that the specified directory doesn't contain CMakeLists.txt (which I plainly see is there). Can any kind soul help me get this sorted? |
the SDK only is needed to build airwave. using the archive.org link i sent above, you can follow the original instructions from the repo README. if you don't put the SDK in the path specified, then you need to change the path to point to the SDK. you MUST download the old SDK that I linked above, or you cannot build, as steinberg moved files around. the new SDK is not compatible with the old one. |
Hey thanks. Still no dice; downloaded the archived version of the SDK and tried putting it in all sorts of different places / changing the path, but nothing. Still getting an error that the SDK can't be found. Probably just making some basic mistake but I give up. |
Hello together, I had the same error when installing via cmake:
What worked for me was using the SDK from gordols archive. Also I had to point to the VST2_SDK directory! Like this:
But know I'm getting the an error doing the make: [ 20%] Building CXX object src/host/CMakeFiles/airwave-host-32.dir/__/common/dataport.cpp.o /usr/include/c++/8/cstdlib:75:15: Fatal Error stdlib.h: File or directory not found Someone any idea, how to solve this one? I'm sitting on a Fedora 29 machine. |
@vixl152 have you installed the libc-dev packages? |
Yes I have. Did the yum install like in the install instructions:
Here on my machine:
|
@seanjean3000 I might be wrong, I'm not much into C/C++. Perhaps it's just about imports but perhaps not . . . sad face, sad face, wink wink |
Thanks for the follow up Michał--nice to have some confirmation that it wasn't just me. Too bad it appears to be broken, but I've had some luck with alternatives in the meantime.
…________________________________
From: Michał Kempka <[email protected]>
Sent: January 29, 2019 9:34 PM
To: psycha0s/airwave
Cc: seanjean3000; Mention
Subject: Re: [psycha0s/airwave] VST SDK path (#92)
@seanjean3000<https://github.com/seanjean3000>
I don't think that you are doing anything wrong. Cmake requires aeffect.h and aeffectx.h which are not in the new SDK cause fuck legacy code and VST 2. It looks like some parts of code need to be rewriten cause 5 minute code substitutions I made weren't enough and caused furter errors.
I might be wrong, I'm not much into C/C++. Perhaps it's just about imports but perhaps not . . . sad face, sad face, wink wink
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub<#92 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/Ary588OSY-yNH1nehMoob6jTwtwWl2wDks5vIQS2gaJpZM4SthGk>.
|
If you did solve the problem, can you please share? |
you need the libc dev packages. some distros package them in a wrapper called |
For new SDK package change in CMakeLists.txt to this:
|
Compiling with the newest version of SDK is unsuccessful. Can someone share a link to last working version of SDK? |
The SDK from https://web.archive.org/web/20180201000000*/https://download.steinberg.net/sdk_downloads/vstsdk369_01_03_2018_build_132.zip still works. Just get the one from 2018, not 2020. |
Sometimes works but transfer is interrupted by server. After 6 or 7 trials I downloaded file. |
Right now, the link seems dead. Is there any other way to get a 2018 release? Or should we update the code to use the new VST SDK 3? |
I still have the zip and have uploaded it to Drive for you: https://drive.google.com/file/d/15sOCzi7TB63YRdYTOK7rGv2KPQ4wXT9C/view?usp=sharing |
I have tried all of these suggestions, and frankly, things are a mess now. I wonder if anyone can provide a simple 1, 2, 3 type guide that actually works. For example, by "Go to the airwave source directory and execute the following commands:" do you mean: |
I ran into this error while trying to compile. I fixed it by downloading the legacy version of VST_SDK from ndri's reply. After that, I checked the cmake file for airwave. It's looking for this specific directory.
I searched and pluginterfaces/vst2.x is directly under VST2_SDK in the unpacked folder, so the location you need to point to for airwave to build is...
After I did this, simply running the cmake line pointing at the location of airwave's cmake worked. Unfortunately, I later ran into a separate error involving my wine version, but I believe that it's unrelated to this problem. |
The unfree source is old and hard to find; small version bump so the required zip file is available via psycha0s/airwave#92 .
OK, really basic problem, the compiler commands don't find the SDK.
I installed it in ~/VST3/SDK (where resides VST_SDK folder that came from Steinberg's zip)
When I try: cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX=/opt/airwave -DVSTSDK_PATH=${HOME}/VST3/SDK ..
I get the "VST SDK is not found" error.
I tried moving the contents of VST_SDK one level down to ~/VST3/SDK, but that did not help.
Also in the installation instructions there is line to install wine1.7-dev, but I have wine-rt from the KX Studio repositories installed. I installed wine-rt-dev instead.
The text was updated successfully, but these errors were encountered: