So I’m just giving the new Matrix class a quick spin, but I’m running into some issues.
I’m getting linking errors when using any function that is defined in juce_Matrix.cpp
I’m running the latest tip on the develop branch and I can easily recreate this by making a new JUCE audio plugin, adding the dsp module and then adding the following line to the pluginProcessor constructor:
auto outputMatrix = dsp::Matrix<float>::identity ((size_t) 2);
This is the error I get:
Undefined symbols for architecture x86_64:
“juce::dsp::Matrix::identity(unsigned long)”, referenced from:
MatrixTestAudioProcessor::MatrixTestAudioProcessor() in libMatrixTest.a(PluginProcessor.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I’m building using Xcode 8.3.1.
Any suggestions?
