From 4d24ce8f85141fcbd0e7a0a4aa70ed9fa4a4aa21 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Wed, 12 Jun 2019 22:44:56 +0200 Subject: [PATCH] Link to dcc-rs dependencies When linking against the static library we need to also include all dynamic libs this still depends on. Thanks to the old CI system spotting this! --- python/src/deltachat/_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/deltachat/_build.py b/python/src/deltachat/_build.py index 9f478933e..7eb1eff63 100644 --- a/python/src/deltachat/_build.py +++ b/python/src/deltachat/_build.py @@ -10,7 +10,7 @@ def ffibuilder(): projdir = os.environ.get('DCC_RS_DEV') target = os.environ.get('DCC_RS_TARGET', 'release') if projdir: - libs = [] + libs = ['rt', 'dl', 'm'] objs = [os.path.join(projdir, 'target', target, 'libdeltachat.a')] incs = [os.path.join(projdir, 'deltachat-ffi')] else: