From 20cbc532f1335eb3931df228c58a8955a22c4a37 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 18 Aug 2020 12:34:31 +0300 Subject: [PATCH] build script: use own iconv library fixes #13 --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index f930209f..4976d9ca 100755 --- a/build.py +++ b/build.py @@ -49,6 +49,7 @@ class Target: 'glib-2.0', 'gobject-2.0', 'intl', + 'iconv', 'ffi', 'pcre', @@ -62,7 +63,7 @@ class Target: ) linker_args = '-framework AudioUnit -framework AudioToolbox -framework Carbon ' \ - '-framework CoreAudio -framework CoreMIDI -framework CoreVideo -liconv' + '-framework CoreAudio -framework CoreMIDI -framework CoreVideo' for lib in extra_libs: linker_args += f' {builder.lib_path}lib{lib}.a'