when i build in ubuntu, the problem is shot as "GOTURN-master/src/native/vot.h:50:22: fatal error: trax.h: No such file or directory", how to fix it?
Activity
davheld commentedon Aug 14, 2016
Have you modified vot.h at all?
Lines 48 and 49 should prevent line 50 from being executed unless you have
trax.h:
#ifdef __has_include
if __has_include("trax.h")
Strangely, it seems that trax.h is being found in your include lists but
then it is causing a compilation error?
I would try removing trax.h from your include lists.
On Wed, Aug 10, 2016 at 7:12 PM, peerchen notifications@github.com wrote:
WhiteIsClosing commentedon Oct 13, 2016
Hi
I meet this problem too, how to removing trax.h from my include lists.
charliememory commentedon Oct 21, 2016
I solved this bug just modify
to
Besides, I have some fixed other errors which may also occur in your compilation.
1. trax.h missing. (ref to #1 )
Just download it and build it. Then add it into your CMakeList.txt
target_link_libraries(${PROJECT_NAME} /path_to_trax/build/libtrax.so)
2. Caffe path setting.
Adding the following items into your CMakeList.txt
3. CUDA setting.
Just modify
to
If cuda is still missing, add
davheld commentedon Oct 21, 2016
@charliememory - this is great, nice job figuring all of this out! Any chance that you can create a quick pull request with these changes?
akita1987 commentedon Mar 3, 2017
@charliememory Thank you! This solves my error.