You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linking error related to pthreads. This is fixed by: env.Append(_LIBFLAGS = ["-lpthread"])
It's important that -lpthread flag is at the end of the flags.
I'm not sure if that's a problem related to new versions of libraries or Ubuntu-specific, but perhaps the SConstruct file should be modified, or a new wiki page should be created.
(Compare: BVLC/caffe#2347NVIDIA/DIGITS#156)
The text was updated successfully, but these errors were encountered:
There are two problems when trying to compile the program on Ubuntu 16.04:
Error "hdf5.h not found". This is fixed by creating symlinks:
and by adding more include paths in the SConstruct file:
Linking error related to pthreads. This is fixed by:
env.Append(_LIBFLAGS = ["-lpthread"])
It's important that
-lpthread
flag is at the end of the flags.I'm not sure if that's a problem related to new versions of libraries or Ubuntu-specific, but perhaps the SConstruct file should be modified, or a new wiki page should be created.
(Compare: BVLC/caffe#2347 NVIDIA/DIGITS#156)
The text was updated successfully, but these errors were encountered: