From 39cfe28f330b8d975477b1f253e1589d6d192456 Mon Sep 17 00:00:00 2001 From: Vsevolod Solovyov Date: Mon, 24 Aug 2015 12:52:05 +0300 Subject: [PATCH] Correctly pass link_args in c_ext() in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3617b66dd..e56b450a2 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ def name_to_path(mod_name, ext): def c_ext(mod_name, language, includes, compile_args, link_args): mod_path = name_to_path(mod_name, language) return Extension(mod_name, [mod_path], include_dirs=includes, - extra_compile_args=compile_args, extra_link_args=compile_args) + extra_compile_args=compile_args, extra_link_args=link_args) def cython_setup(mod_names, language, includes, compile_args, link_args):