DEV Community

Audio plugin development with DPF: first plugin

Arthur O. Reis on June 18, 2022

What is DPF? DPF, short name for Distrho Plugin Framework, is a framework for building audio plugins in C++, compared to JUCE is smaller...
Collapse
 
stivb profile image
steve_at_uh

Beautifully written and paced tutorial - I just fail on the very last command:

DPFTutorial/plugins/MyAmp$: make

I get:

bash: DPFTutorial/plugins/MyAmp$:: No such file or directory

I am running this from the superdirectory of DPFTutorial (in my case called "dev") is that correct?

If I navigate instead into the MyAmp folder and run make I get

MyAmp.cpp:19:20: error: ‘d_const’ was not declared in this scope; did you mean ‘d_cconst’?

But I presume that comes from not running from the super directory. But do you have any ideas what was wrong with the original make command?

As I say, really well written tutorial though

Steve

Collapse
 
reis0 profile image
Arthur O. Reis • Edited

Sorry for the delay, it's been a while since I've checked the comments.

For the question, can you give me an overview of your plugin folder? If there's a makefile it should be able to at least not give this erro.

The second error message is actually correct, it should be d_cconst instead of d_const, I'll fix the code.

Anyway thanks for the feedback, I hope I helped even if just a little.