Skip to content

Commit

Permalink
Merge pull request #1367 from xiaoyifang/opt/fix-mac-arm-libicudata
Browse files Browse the repository at this point in the history
fix: macos arm support
  • Loading branch information
xiaoyifang authored Jan 19, 2024
2 parents ba2bf80 + 239a7ff commit 80eb60a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/macos-arm-homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [flyci-macos-large-latest-m2]
qt_ver: [ 6.7.0,6.6.0 ]
qt_ver: [ 6.7.0 ]
qt_arch: [clang_64]
env:
targetName: GoldenDict
Expand Down Expand Up @@ -100,8 +100,9 @@ jobs:
macdeployqt ${targetName}.app -qmldir=. -verbose=1
otool -L GoldenDict.app/Contents/MacOS/GoldenDict
find /opt -name "libicudata.73.dylib" -exec cp {} GoldenDict.app/Contents/Frameworks/ \;
ls -al GoldenDict.app/Contents/Frameworks
find /usr/local -name "libicudata.73.dylib" -exec cp {} GoldenDict.app/Contents/Frameworks/ \;
find GoldenDict.app/Contents/Frameworks/ -maxdepth 1 -name "libicu*" -exec ls -al {} \;
find GoldenDict.app/Contents/Frameworks/ -maxdepth 1 -type f -name "libicu*" -exec ls -al {} \;
Expand Down

0 comments on commit 80eb60a

Please sign in to comment.