Skip to content

Commit e5b87b5

Browse files
authored
Merge pull request #190 from Ghabry/updates
Vita: Fix undefined reference to funlockfile in fmtlib
2 parents 9d47d69 + 6c0e2f8 commit e5b87b5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

vita/2_build_toolchain.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ if [ ! -f .patches-applied ]; then
3030
patch -Np1 < $SCRIPT_DIR/../shared/extra/lhasa.patch
3131
)
3232

33+
# Fix fmt
34+
(cd $FMT_DIR
35+
# Fix undefined reference to funlockfile
36+
perl -pi -e 's/define FMT_USE_FALLBACK_FILE 0/define FMT_USE_FALLBACK_FILE 1/' include/fmt/format-inl.h
37+
)
38+
3339
# Fix icu build
3440
patch -Np0 < $SCRIPT_DIR/icu-vita.patch
3541

0 commit comments

Comments
 (0)