Feedback #498
Make tbeta compile in 64bit linux again.
| Status: | New | Start: | 08/27/2011 | |
| Priority: | Urgent | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | - | Spent time: | - | |
| Target version: | - | |||
Description
You get this error on two places:
fatal error: ofxNCore.h: No such file or directory
in testApp.h
change
#include "ofxNCore.h"
to
#include "../../../addons/ofxNCore/src/ofxNCore.h"
in ofxNCoreVision.h
change
#include "ofxNCore.h"
to
#include "../ofxNCore.h"
and then you get "error: 'UINT64_C' was not declared in this scope"
History
Updated by anton fosselius about 1 year ago
adding -D__STDC_CONSTANT_MACROS to CXXFLAGS should solve the 'UINT64_C' error.
