Skip to content

Commit

Permalink
More attempts to fix libflac compilation for macos wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed May 14, 2024
1 parent b798c5d commit d702314
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions packaging/deps/libflac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ tar xzf ${flac_pkg} \
-DBUILD_UTILS=OFF \
-DBUILD_TESTING=OFF \
-DBUILD_EXAMPLES=OFF \
-DBUILD_SHARED_LIBS=ON \
-DINSTALL_MANPAGES=OFF \
-DCMAKE_INSTALL_PREFIX="${PREFIX}" \
.. \
Expand Down
4 changes: 4 additions & 0 deletions packaging/wheels/install_deps_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ else
fi

# Install any pre-built dependencies with homebrew

brew install cmake
# Force uninstall flac tools, to avoid conflicts with our
# custom compiled version.
brew uninstall -f flac libogg
if [ "x${use_gcc}" = "xyes" ]; then
brew install gcc@${gcc_version}
fi
Expand Down

0 comments on commit d702314

Please sign in to comment.