sebhtml / ray

Ray -- Parallel genome assemblies for parallel DNA sequencing
http://denovoassembler.sf.net
Other
65 stars 12 forks source link

Error during compilation #240

Open jvollme opened 8 years ago

jvollme commented 8 years ago

Hello, I am trying to Install Ray locally, but the compilation aborts with an error message. I cloned the most recent github-repository and tried to compile it with this make command: make PREFIX=build MAXKMERLENGTH=120

I get this error message:

CXX code/application_core/ray_main.o
In file included from ./code/Mock/common_functions.h:31:0,
           from code/application_core/Machine.h:29,
             from code/application_core/ray_main.cpp:22:
./code/KmerAcademyBuilder/Kmer.h:27:48: fatal error: RayPlatform/store/CarriageableItem.h: No such file or directory
 #include \<RayPlatform/store/CarriageableItem.h\>
                                                  ^
compilation terminated.
make: *** [code/application_core/ray_main.o] Error 1

can you help me find out what is missing?

icedevil2001 commented 8 years ago

I am getting the same error on the latest release, (cloned on Wed Mar 2 2016) : `$ make PREFIX=ray_build CXX code/application_core/ray_main.o In file included from ./code/Mock/common_functions.h:31:0, from code/application_core/Machine.h:29, from code/application_core/ray_main.cpp:22: ./code/KmerAcademyBuilder/Kmer.h:27:48: fatal error: RayPlatform/store/CarriageableItem.h: No such file or directory

include <RayPlatform/store/CarriageableItem.h>

                                            ^

compilation terminated. make: *** [code/application_core/ray_main.o] Error 1`

mlozada commented 8 years ago

I am getting the same error, CXX code/application_core/ray_main.o In file included from ./code/Mock/common_functions.h:31:0, from code/application_core/Machine.h:29, from code/application_core/ray_main.cpp:22: ./code/KmerAcademyBuilder/Kmer.h:27:48: error fatal: RayPlatform/store/CarriageableItem.h: No existe el fichero o el directorio

include <RayPlatform/store/CarriageableItem.h>

                                            ^

compilación terminada. make: *\ [code/application_core/ray_main.o] Error 1

tried with bzipped, gz and zip files

mlozada commented 8 years ago

It needs the RayPlatform apart from ray files. I have solved it with the following:

git clone https://github.com/sebhtml/ray.git git clone https://github.com/sebhtml/RayPlatform.git cd ray make PREFIX=ray-build make install ls ray-build hope it helps