Please elaborate: can you post a compile time log and what you did to fix it your end; what #include did you use?
This may be something I need to add to my PR. Also include what build toolchain you’re using.
John has messaged me about v2 migration and so this maybe important for cross platform builds.
Can you add the line #include <array> to the top of Rainbow.hpp underneath the #pragma line and do a make clean before trying to build again.
Tell me what happens.
SVGSwitch’ is deprecated, unused function ‘rtrim_copy’, and:
non-portable path to file ‘“Common.hpp”’; specified path differs in case from file name on disk [-Wnonportable-include-path]
#include “common.hpp”
Sorry, I was wrong about having my modules built for Rack 2. Although I built them against the v2 API, I seem to be running Rack v1.dev.a5fc5891, which is still loading my non-version 2 modules.
I’ve built Chortling Hamster Modules using VCV Rack Community Edition 2.git.219bbaf1 and Rack SDK 2.git.219bbaf1. It’s working except for the segment / calculator displays in one module which now aren’t working in dark room mode again. When I’ve fixed that I’ll upload another build, though not sure if I should given that the release of v2 is close?
Just pushed some updates to Count Modula V2 to address (hopefully) a few issues with modules having 7 segment displays crashing on load and spruce up the buttons on Colour Palette.
I just got build errors with your latest version (built a version last night that was fine)
3 errors - basically all similar.
src/modules/Euclid.cpp:566:26: error: reference to ‘string’ is ambiguous
lengthDisplay->text = string::f( “%02d”, m->length);
…/…/include/string.hpp:10:11: note: candidate found by name lookup is
‘rack::string’
namespace string {
src/modules/Euclid.cpp:567:25: error: reference to ‘string’ is ambiguous
hitsDisplay->text = string::f( “%02d”, m->hits);
…/…/include/string.hpp:10:11: note: candidate found by name lookup is
‘rack::string’
namespace string {
src/modules/Euclid.cpp:568:26: error: reference to ‘string’ is ambiguous
shiftDisplay->text = string::f( “%02d”, m->shift);
…/…/include/string.hpp:10:11: note: candidate found by name lookup is
‘rack::string’
namespace string {
OK, I’ve fixed that using the “if layer == 1” stuff, but has anyone found that LEDs / widgets do not graphically update when VCV Audio 2 does not have an output device selected, even though parameter knobs can be turned and the tooltips update with the parameter values? Is that expected behaviour? (Edit: This is in Studio Edition 2.git.2efb755f. Sorry, I meant 2efb7ff5.)