-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
241 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,212 +1,18 @@ | ||
find_package(PkgConfig REQUIRED) | ||
include(FetchContent) | ||
|
||
include(ExternalProject) | ||
|
||
set(INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../install) | ||
set(ARCHIVE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../archives) | ||
set(patch_dir ${PROJECT_SOURCE_DIR}/third_party/patches) | ||
set(COMMON_ARGS --quiet --disable-shared --enable-static --prefix=${INSTALL_DIR} --with-pic --disable-dependency-tracking --disable-debug --disable-examples --disable-doc) | ||
|
||
# To pass custom environment variables to ExternalProject_Add command, | ||
# we need to do `${CMAKE_COMMAND} -E env ${envs} <COMMANAD>`. | ||
# https://stackoverflow.com/a/62437353 | ||
# We constrcut the custom environment variables here | ||
set(envs | ||
"PKG_CONFIG_PATH=${INSTALL_DIR}/lib/pkgconfig" | ||
"LDFLAGS=-L${INSTALL_DIR}/lib $ENV{LDFLAGS}" | ||
"CFLAGS=-I${INSTALL_DIR}/include -fvisibility=hidden $ENV{CFLAGS}" | ||
) | ||
|
||
ExternalProject_Add(amr | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-0.1.5.tar.gz | ||
URL_HASH SHA256=2c006cb9d5f651bfb5e60156dbff6af3c9d35c7bbcc9015308c0aff1e14cd341 | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/amr/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/amr/configure ${COMMON_ARGS} | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
ExternalProject_Add(lame | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz | ||
URL_HASH SHA256=24346b4158e4af3bd9f2e194bb23eb473c75fb7377011523353196b19b9a23ff | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/lame/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/lame/configure ${COMMON_ARGS} --enable-nasm | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
ExternalProject_Add(ogg | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.3.tar.gz | ||
URL_HASH SHA256=c2e8a485110b97550f453226ec644ebac6cb29d1caef2902c007edab4308d985 | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/ogg/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/ogg/configure ${COMMON_ARGS} | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
ExternalProject_Add(flac | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DEPENDS ogg | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://ftp.osuosl.org/pub/xiph/releases/flac/flac-1.3.2.tar.xz | ||
URL_HASH SHA256=91cfc3ed61dc40f47f050a109b08610667d73477af6ef36dcad31c31a4a8d53f | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/flac/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/flac/configure ${COMMON_ARGS} --with-ogg --disable-cpplibs --disable-xmms-plugin | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
ExternalProject_Add(vorbis | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DEPENDS ogg | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.6.tar.gz | ||
URL_HASH SHA256=6ed40e0241089a42c48604dc00e362beee00036af2d8b3f46338031c9e0351cb | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/vorbis/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/vorbis/configure ${COMMON_ARGS} --with-ogg | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
ExternalProject_Add(opus | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DEPENDS ogg | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://ftp.osuosl.org/pub/xiph/releases/opus/opus-1.3.1.tar.gz | ||
URL_HASH SHA256=65b58e1e25b2a114157014736a3d9dfeaad8d41be1c8179866f144a2fb44ff9d | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/opus/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/opus/configure ${COMMON_ARGS} --with-ogg | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
ExternalProject_Add(opusfile | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DEPENDS opus | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
URL https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.12.tar.gz | ||
URL_HASH SHA256=118d8601c12dd6a44f52423e68ca9083cc9f2bfe72da7a8c1acb22a80ae3550b | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/opusfile/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/opusfile/configure ${COMMON_ARGS} --disable-http | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
|
||
# OpenMP is by default compiled against GNU OpenMP, which conflicts with the version of OpenMP that PyTorch uses. | ||
# See https://github.com/pytorch/audio/pull/1026 | ||
# TODO: Add flags like https://github.com/suphoff/pytorch_parallel_extension_cpp/blob/master/setup.py | ||
set(SOX_OPTIONS | ||
--disable-openmp | ||
--with-amrnb | ||
--with-amrwb | ||
--with-flac | ||
--with-lame | ||
--with-oggvorbis | ||
--with-opus | ||
--without-alsa | ||
--without-ao | ||
--without-coreaudio | ||
--without-oss | ||
--without-id3tag | ||
--without-ladspa | ||
--without-mad | ||
--without-magic | ||
--without-png | ||
--without-pulseaudio | ||
--without-sndfile | ||
--without-sndio | ||
--without-sunaudio | ||
--without-waveaudio | ||
--without-wavpack | ||
--without-twolame | ||
) | ||
|
||
set(SOX_LIBRARIES | ||
${INSTALL_DIR}/lib/libsox.a | ||
${INSTALL_DIR}/lib/libopencore-amrnb.a | ||
${INSTALL_DIR}/lib/libopencore-amrwb.a | ||
${INSTALL_DIR}/lib/libmp3lame.a | ||
${INSTALL_DIR}/lib/libFLAC.a | ||
${INSTALL_DIR}/lib/libopusfile.a | ||
${INSTALL_DIR}/lib/libopus.a | ||
${INSTALL_DIR}/lib/libvorbisenc.a | ||
${INSTALL_DIR}/lib/libvorbisfile.a | ||
${INSTALL_DIR}/lib/libvorbis.a | ||
${INSTALL_DIR}/lib/libogg.a | ||
) | ||
|
||
set(sox_depends | ||
ogg flac vorbis opusfile lame amr | ||
) | ||
|
||
ExternalProject_Add(sox | ||
PREFIX ${CMAKE_CURRENT_BINARY_DIR} | ||
DEPENDS ${sox_depends} | ||
DOWNLOAD_DIR ${ARCHIVE_DIR} | ||
FetchContent_Declare( | ||
sox | ||
URL https://downloads.sourceforge.net/project/sox/sox/14.4.2/sox-14.4.2.tar.bz2 | ||
URL_HASH SHA256=81a6956d4330e75b5827316e44ae381e6f1e8928003c6aa45896da9041ea149c | ||
PATCH_COMMAND cp ${patch_dir}/config.guess ${patch_dir}/config.sub ${CMAKE_CURRENT_BINARY_DIR}/src/sox/ | ||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${envs} ${CMAKE_CURRENT_BINARY_DIR}/src/sox/configure ${COMMON_ARGS} ${SOX_OPTIONS} | ||
BUILD_BYPRODUCTS ${SOX_LIBRARIES} | ||
DOWNLOAD_NO_PROGRESS ON | ||
LOG_DOWNLOAD ON | ||
LOG_UPDATE ON | ||
LOG_CONFIGURE ON | ||
LOG_BUILD ON | ||
LOG_INSTALL ON | ||
LOG_MERGED_STDOUTERR ON | ||
LOG_OUTPUT_ON_FAILURE ON | ||
) | ||
PATCH_COMMAND "" | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
) | ||
# FetchContent_MakeAvailable will parse the downloaded content and setup the targets. | ||
# We want to only download and not build, so we run Populate manually. | ||
if(NOT sox_POPULATED) | ||
FetchContent_Populate(sox) | ||
endif() | ||
|
||
add_library(libsox INTERFACE) | ||
add_dependencies(libsox sox) | ||
target_include_directories(libsox INTERFACE ${INSTALL_DIR}/include) | ||
target_link_libraries(libsox INTERFACE ${SOX_LIBRARIES}) | ||
target_include_directories(libsox INTERFACE ${sox_SOURCE_DIR}/src) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.