From db496b82fbc99b9479b0cca847f4d577c31d1625 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 22 Aug 2022 00:10:30 +0000 Subject: [PATCH] Add `--features jsonrpc` to scripts/run_all.sh Python wheels cannot be built without it as they expect everything defined in deltachat.h to be in the C library. --- scripts/run_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_all.sh b/scripts/run_all.sh index 525f8a094..2a81a2c09 100755 --- a/scripts/run_all.sh +++ b/scripts/run_all.sh @@ -8,7 +8,7 @@ set -e -x # compile core lib -cargo build --release -p deltachat_ffi +cargo build --release -p deltachat_ffi --features jsonrpc # Statically link against libdeltachat.a. export DCC_RS_DEV="$PWD"