Browse Source

Disable flac asm-optimizations for macos-old

tags/v1.0
falkTX 4 years ago
parent
commit
055ff99581
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      bootstrap.sh

+ 7
- 1
bootstrap.sh View File

@@ -78,8 +78,14 @@ build_autoconf libvorbis "${LIBVORBIS_VERSION}"
# ---------------------------------------------------------------------------------------------------------------------
# flac

FLAC_EXTRAFLAGS="--disable-doxygen-docs --disable-thorough-tests"

if [ "${MACOS_OLD}" -eq 1 ]; then
FLAC_EXTRAFLAGS="${FLAC_EXTRAFLAGS} --disable-asm-optimizations"
fi

download flac "${FLAC_VERSION}" "https://ftp.osuosl.org/pub/xiph/releases/flac" "tar.xz"
build_autoconf flac "${FLAC_VERSION}"
build_autoconf flac "${FLAC_VERSION}" "${FLAC_EXTRAFLAGS}"

# ---------------------------------------------------------------------------------------------------------------------
# libsamplerate


Loading…
Cancel
Save