mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Additional mac icu4c changes
This commit is contained in:
parent
da968bbaa8
commit
62b90e6e5d
1 changed files with 7 additions and 4 deletions
|
@ -4,10 +4,13 @@ set -ex
|
||||||
|
|
||||||
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
||||||
brew update
|
brew update
|
||||||
brew install icu4c qt5 lmdb clang-format ninja libsodium cmark
|
brew install qt5 lmdb clang-format ninja libsodium cmark
|
||||||
brew upgrade boost cmake || true
|
brew upgrade boost cmake icu4c || true
|
||||||
# Attempt to fix icu4c issues.
|
# make sure that ICU executables are added to the PATH
|
||||||
brew unlink icu4c && brew link icu4c --force
|
# and that the shared objects files can be found by the linker
|
||||||
|
export PATH="$(brew --prefix icu4c)/bin:$PATH"
|
||||||
|
export DYLD_FALLBACK_LIBRARY_PATH="$(brew --prefix icu4c)/lib:$DYLD_FALLBACK_LIBRARY_PATH"
|
||||||
|
export PKG_CONFIG_PATH="$(brew --prefix icu4c)/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
||||||
sudo python get-pip.py
|
sudo python get-pip.py
|
||||||
|
|
Loading…
Reference in a new issue