Has anyone had success installing the latest cufflinks (2.0.0 beta) from source? It seems like a required local header file "rounding.h" is not included in the source distribution. I have emailed their support email about this, but I just wanted to double check that I am not the only one having this issue. Thanks!
The reason I think that it is a local file rather than something my system is missing is that it is included right in the middle of a block of other locally included header files, and the include statement uses the double quote syntax rather than the <> syntax. Thanks!
Code:
g++44 -DHAVE_CONFIG_H -I. -I.. -I../src -I/usr/include -Wall -Wno-strict-aliasing -g -gdwarf-2 -Wunused -Wuninitialized -m64 -march=nocona -O3 -DNDEBUG -pthread -I/hive/groups/genomeAssem/include -I/hive/groups/genomeAssem/src/samtools_svn/include -I/hive/groups/genomeAssem/include -MT abundances.o -MD -MP -MF .deps/abundances.Tpo -c -o abundances.o abundances.cpp abundances.cpp:38:22: error: rounding.h: No such file or directory
Comment