We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I spent quite some time trying to compile this ancient abandoned software. I managed to compile it, but it crashes when running.
If anyone wants to try, here are the "fixes" I've made:
AEffEditor.hpp
aeffeditor.h
return false
return NULL
-I "/usr/include/vst36"
DEPFLAGS
-fpermissive
-std=c++03
-D "VST_FORCE_DEPRECATED=0"
CFLAGS
va_copy
__va_copy
juce_amalgamated.cpp
if (index >= 0)
if (inputIndex >= 0 || outputIndex >= 0)
These are not real fixes, just the bare minimum to make the code compile.
make CONFIG=Release # A binary will be available at bin/jost make CONFIG=Debug # A binary will be available at bin/jost_debug
After all these steps, and after too many warning messages from the compiler.
When I run the Release binary, I immediately get an error:
ERROR: Program executed illegal instruction.. terminating
The Debug binary runs, but it is unstable.
Sidenote: Interestingly, this ancient JUCE version exposes the Alsa MIDI ports, while the newer JUCE code doesn't.
Conclusion: you will have better luck running Carla (which supports all kinds of plugin formats) or the simpler Jalv (which only supports LV2).
The text was updated successfully, but these errors were encountered:
Thanks for this feedback @denilsonsa . I'll let this open in case of someone would want to continue this quest!
Sorry, something went wrong.
No branches or pull requests
I spent quite some time trying to compile this ancient abandoned software. I managed to compile it, but it crashes when running.
If anyone wants to try, here are the "fixes" I've made:
AEffEditor.hpp
withaeffeditor.h
at VstPlugin.hreturn false
withreturn NULL
at ProcessingGraph.h-I "/usr/include/vst36"
toDEPFLAGS
-fpermissive
and-std=c++03
and-D "VST_FORCE_DEPRECATED=0"
toCFLAGS
va_copy
with__va_copy
at line 10738 ofjuce_amalgamated.cpp
if (index >= 0)
withif (inputIndex >= 0 || outputIndex >= 0)
at line 298186 ofjuce_amalgamated.cpp
These are not real fixes, just the bare minimum to make the code compile.
After all these steps, and after too many warning messages from the compiler.
When I run the Release binary, I immediately get an error:
The Debug binary runs, but it is unstable.
Sidenote: Interestingly, this ancient JUCE version exposes the Alsa MIDI ports, while the newer JUCE code doesn't.
Conclusion: you will have better luck running Carla (which supports all kinds of plugin formats) or the simpler Jalv (which only supports LV2).
The text was updated successfully, but these errors were encountered: