diff --git a/src/VCluster/VCluster.cpp b/src/VCluster/VCluster.cpp index 4a567932b65ab81cdc9d01a1dc2c6c9c217b71f5..177a5d128911612906a4b71b9d537db2484101f8 100644 --- a/src/VCluster/VCluster.cpp +++ b/src/VCluster/VCluster.cpp @@ -126,9 +126,6 @@ size_t openfpm_vcluster_compilation_mask() compiler_mask |= 0x1; #endif - #ifdef __NVCC__ - compiler_mask |= 0x02; - #endif #ifdef CUDA_GPU compiler_mask |= 0x04; diff --git a/src/VCluster/VCluster.hpp b/src/VCluster/VCluster.hpp index 5a4ca4cfc947ee088f18b668b5719df2afa4af9c..4cb9edc4f0051a95c16c9c9836de80482dd75776 100644 --- a/src/VCluster/VCluster.hpp +++ b/src/VCluster/VCluster.hpp @@ -1480,10 +1480,11 @@ static void openfpm_init(int *argc, char ***argv) if (compiler_mask != openfpm_vcluster_compilation_mask() || compiler_mask != openfpm_ofpmmemory_compilation_mask()) { - std::cout << __FILE__ << ":" << __LINE__ << " Error: with the compilation options you are using you should linking with " << - get_link_lib(compiler_mask) << " but you are linking with " << - "-lvcluster_" << get_link_lib(openfpm_vcluster_compilation_mask()) << " and -lofpmmemory_" << - get_link_lib(openfpm_ofpmmemory_compilation_mask()) << std::endl; + std::cout << __FILE__ << ":" << __LINE__ << " Error: in compilation you should link with " << + "-lvcluster" << get_link_lib(compiler_mask) << " and -lofpmmemory" << get_link_lib(compiler_mask) << + " but you are linking with " << + "-lvcluster" << get_link_lib(openfpm_vcluster_compilation_mask()) << " and -lofpmmemory" << + get_link_lib(openfpm_ofpmmemory_compilation_mask()) << std::endl; } }