Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

depends: disable libunistring for mingw32 #228

Open
wants to merge 1 commit into
base: 0.1.4-dogebox-pre
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
sudo update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
sudo update-binfmts --import /usr/share/binfmts/wine
dep-opts: "CROSS_COMPILE='yes' SPEED=slow V=1"
config-opts: "--enable-test-passwd"
config-opts: "--enable-test-passwd --disable-unistring"
run-tests: true
- name: x86_64-win-native
host: x86_64-pc-windows-msvc
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
sudo update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix
sudo update-binfmts --import /usr/share/binfmts/wine
dep-opts: "CROSS_COMPILE='yes' SPEED=slow V=1"
config-opts: "--enable-test-passwd"
config-opts: "--enable-test-passwd --disable-unistring"
run-tests: true
goal: install
- name: i686-linux
Expand Down
8 changes: 6 additions & 2 deletions depends/packages/packages.mk
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
packages:=libevent libunistring
packages:=libevent
native_packages := native_ccache

wallet_packages=

upnp_packages=

darwin_native_packages =
darwin_native_packages =

ifneq ($(build_os),darwin)
darwin_native_packages += native_cctools native_libtapi
Expand All @@ -15,3 +15,7 @@ darwin_native_packages+= native_clang
endif

endif

ifneq ($(host_os),mingw32)
packages+=libunistring
endif
Loading