Hi, I have the following error when i try to use fftw3 library: Undefined symbols for architecture x86_64:
“createPluginFilterOfType(juce::AudioProcessor::WrapperType)”, referenced from:
(anonymous namespace)::pluginEntryPoint(long long ()(VstEffectInterface, int, int, long long, void*, float)) in juce_audio_plugin_client_VST2.o
“PitchEstimatorAudioProcessorEditor::PitchEstimatorAudioProcessorEditor(PitchEstimatorAudioProcessor&)”, referenced from:
PitchEstimatorAudioProcessor::createEditor() in PluginProcessor.o
“juce::BigInteger::BigInteger(juce::BigInteger&&)”, referenced from:
juce::AudioChannelSet::AudioChannelSet(juce::AudioChannelSet&&) in juce_audio_plugin_client_VST2.o
“juce::BigInteger::BigInteger(juce::BigInteger const&)”, referenced from:
juce::AudioChannelSet::AudioChannelSet(juce::AudioChannelSet const&) in juce_audio_plugin_client_VST2.o
“juce::BigInteger::BigInteger()”, referenced from:
juce::AudioChannelSet::AudioChannelSet() in juce_audio_plugin_client_VST2.o
“juce::BigInteger::~BigInteger()”, referenced from:
juce::AudioChannelSet::~AudioChannelSet() in juce_audio_plugin_client_VST2.o
“juce::BigInteger::operator=(juce::BigInteger&&)”, referenced from:
juce::AudioChannelSet::operator=(juce::AudioChannelSet&&) in juce_audio_plugin_client_VST2.o
“juce::BigInteger::operator=(juce::BigInteger const&)”, referenced from:
juce::AudioChannelSet::operator=(juce::AudioChannelSet const&) in juce_audio_plugin_client_VST2.o
“juce::MidiBuffer::ensureSize(unsigned long)”, referenced from:
JuceVSTWrapper::resume() in juce_audio_plugin_client_VST2.o
…
…
The number of errors that the console show me is more and more but of the same type. I’m working on a pitch estimator trying to use the fftw3 library for fft operations, so i putted in Other Linker Flags the path where is located -lfftw3 because it gave me errors about fft (it didn’t find the functions of the library fftw3). Now it find them but it looks like it doesn’t find the Juce library. I already tried to add the Juce Library functions (the ones located in ‘modules’) in the same folder of the project but it gives me the same errors.
How can i solve the problem? Thanks

