Skip to content

Commit

Permalink
Fix mingw-w64 header version
Browse files Browse the repository at this point in the history
Fixed fontconfig build in win64 portable

```
/usr/bin/x86_64-w64-mingw32-ld: /opt/ffdeps/lib/libfreetype.a(sfnt.o):sfnt.c:(.text+0xa4b5): undefined reference to `__intrinsic_setjmpex'
/usr/bin/x86_64-w64-mingw32-ld: /opt/ffdeps/lib/libfreetype.a(smooth.o):smooth.c:(.text+0x1b3): undefined reference to `__intrinsic_setjmpex'
```

Signed-off-by: nyanmisaka <[email protected]>
  • Loading branch information
nyanmisaka committed Jun 28, 2023
1 parent e36cfb6 commit d00fb01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builder/scripts.d/10-mingw.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

SCRIPT_REPO="https://git.code.sf.net/p/mingw-w64/mingw-w64.git"
SCRIPT_COMMIT="d7877cbd2e080ffb77070cc08033efde9e034f13"
SCRIPT_COMMIT="c3e587c067a00a561899d49d3e63a659e38802ec"

ffbuild_enabled() {
[[ $TARGET == win* ]] || return -1
Expand Down
2 changes: 1 addition & 1 deletion docker-build-win64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o errexit
set -o xtrace

# Update mingw-w64 headers
git clone --depth=1 https://git.code.sf.net/p/mingw-w64/mingw-w64.git
git clone -b v11.0.1 --depth=1 https://git.code.sf.net/p/mingw-w64/mingw-w64.git
pushd mingw-w64/mingw-w64-headers
./configure \
--prefix=/usr/${FF_TOOLCHAIN} \
Expand Down

0 comments on commit d00fb01

Please sign in to comment.