Skip to content

Commit

Permalink
depends: disable libunistring for mingw32
Browse files Browse the repository at this point in the history
ci: disable libunistring for mingw32
  • Loading branch information
edtubbs committed Oct 28, 2024
1 parent aa63155 commit a5b4dac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
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

0 comments on commit a5b4dac

Please sign in to comment.