This is a compat port needed mainly for binaries downloaded by devel/stack. See the commit message for devel/libffi321 and the linked PR for detailed explanation.
29 lines
781 B
C
29 lines
781 B
C
diff --git ./src/mips/ffi.c.orig ./src/mips/ffi.c
|
|
index 03121e3..8b7881f 100644
|
|
--- ./src/mips/ffi.c.orig
|
|
+++ ./src/mips/ffi.c
|
|
@@ -38,7 +38,9 @@
|
|
#endif
|
|
|
|
#ifndef USE__BUILTIN___CLEAR_CACHE
|
|
-# if defined(__OpenBSD__)
|
|
+# if defined(__FreeBSD__)
|
|
+# include <machine/sysarch.h>
|
|
+# elif defined(__OpenBSD__)
|
|
# include <mips64/sysarch.h>
|
|
# else
|
|
# include <sys/cachectl.h>
|
|
@@ -729,11 +731,13 @@ ffi_prep_closure_loc (ffi_closure *closure,
|
|
closure->fun = fun;
|
|
closure->user_data = user_data;
|
|
|
|
+#if !defined(__FreeBSD__)
|
|
#ifdef USE__BUILTIN___CLEAR_CACHE
|
|
__builtin___clear_cache(clear_location, clear_location + FFI_TRAMPOLINE_SIZE);
|
|
#else
|
|
cacheflush (clear_location, FFI_TRAMPOLINE_SIZE, ICACHE);
|
|
#endif
|
|
+#endif /* ! __FreeBSD__ */
|
|
return FFI_OK;
|
|
}
|
|
|