From 3e713a6fc2e20fd7e4f4e7fa0b6ae3c686acff49 Mon Sep 17 00:00:00 2001 From: dzaima Date: Tue, 5 Aug 2025 19:56:10 +0300 Subject: [PATCH] note need of pkg-config in missing ffi.h error --- src/ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ffi.c b/src/ffi.c index 7f79caa3..11fd5bec 100644 --- a/src/ffi.c +++ b/src/ffi.c @@ -225,7 +225,7 @@ DEF_FREE(ffiFn) { dec(((BoundFn*)x)->obj); } #error "Only FFI=0 and FFI=2 are supported" #endif #if !__has_include() - #error " not found. Either install libffi, or add 'FFI=0' as a make argument to disable •FFI" + #error " not found. Either install libffi and pkg-config, or add 'FFI=0' as a make argument to disable •FFI" #endif #include #include