X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f97709f9d38f0b3f9803a97425271e156504ad1c..3d65d2eaad96faf1c97960216cf8afe08308f9e5:/src/smpi/internals/smpi_global.cpp diff --git a/src/smpi/internals/smpi_global.cpp b/src/smpi/internals/smpi_global.cpp index 8710495e1c..f3f49b38ca 100644 --- a/src/smpi/internals/smpi_global.cpp +++ b/src/smpi/internals/smpi_global.cpp @@ -23,7 +23,7 @@ #include #include -#if not defined(__APPLE__) +#if not defined(__APPLE__) && not defined(__HAIKU__) #include #endif @@ -33,7 +33,7 @@ # define MAC_OS_X_VERSION_10_12 101200 # endif constexpr bool HAVE_WORKING_MMAP = (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12); -#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__sun) +#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__sun) || defined(__HAIKU__) constexpr bool HAVE_WORKING_MMAP = false; #else constexpr bool HAVE_WORKING_MMAP = true; @@ -529,7 +529,7 @@ static void smpi_copy_file(const std::string& src, const std::string& target, of close(fdout); } -#if not defined(__APPLE__) +#if not defined(__APPLE__) && not defined(__HAIKU__) static int visit_libs(struct dl_phdr_info* info, size_t, void* data) { char* libname = (char*)(data); @@ -562,7 +562,7 @@ static void smpi_init_privatization_dlopen(const std::string& executable) // get library name from path char fullpath[512] = {'\0'}; strncpy(fullpath, libname.c_str(), 511); -#if not defined(__APPLE__) +#if not defined(__APPLE__) && not defined(__HAIKU__) int ret = dl_iterate_phdr(visit_libs, fullpath); if (ret == 0) xbt_die("Can't find a linked %s - check the setting you gave to smpi/privatize-libs", fullpath);