Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pythonforandroid/recipes/libzmq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class LibZMQRecipe(Recipe):
version = '4.3.2'
version = '4.3.4'
url = 'https://github.com/zeromq/libzmq/releases/download/v{version}/zeromq-{version}.zip'
depends = []
built_libraries = {'libzmq.so': 'src/.libs'}
Expand Down Expand Up @@ -34,6 +34,7 @@ def build_arch(self, arch):
'--prefix={}'.format(prefix),
'--with-libsodium=no',
'--disable-libunwind',
'--disable-Werror',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @T-Dynamos !

Why --disable-Werror is needed? Do you have a trace or something else?

Copy link
Member Author

@T-Dynamos T-Dynamos Jun 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_env=env)
shprint(sh.make, _env=env)
shprint(sh.make, 'install', _env=env)
Expand Down