Hi,
I’ve installed ofxFX addon and run example files,
It is complaing about this lib which I don’t see in addon or ofxFX folder…?
#include <tr1/memory> // CAN NOT BE FOUND?
Hi,
I’ve installed ofxFX addon and run example files,
It is complaing about this lib which I don’t see in addon or ofxFX folder…?
#include <tr1/memory> // CAN NOT BE FOUND?
Did you try changing the base sdk to 10.8
@fkkcloud - Searching the forum for “tr1/memory” comes up with many relevant posts with similar suggestions.
That will do it though more specifically, when targeting OS X 10.9, you should set the C++ library to libstdc++ from Compiler Default – setting the base SDK to 10.8 does this indirectly by changing the Compiler Default value.
This issue should be resolved on the master branch via PR #2764 and PR #2852.
As pizthewiz said, changing the standard library should fix it. Here’s a step-by-step:
That does the trick, thanks