Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packaging/build_ffmpeg.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
:: Copyright (c) Meta Platforms, Inc. and affiliates.
:: All rights reserved.
::
:: This source code is licensed under the BSD-style license found in the
:: LICENSE file in the root directory of this source tree.

:: Taken from torchaudio
@echo off

Expand Down
5 changes: 5 additions & 0 deletions packaging/build_ffmpeg.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/usr/bin/env bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

# This is taken and adapated from torchaudio, only keeping the parts relevant to
# linux.
Expand Down
6 changes: 6 additions & 0 deletions packaging/check_glibcxx.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

"""
The goal of this script is to ensure that the .so files we ship do not contain
symbol versions from libstdc++ that are too recent. This is a very manual way of
Expand Down
5 changes: 5 additions & 0 deletions packaging/helpers.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/usr/bin/env bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

_list_wheel_files() {
unzip -l "$1" | awk '{print $4}'
Expand Down
5 changes: 5 additions & 0 deletions packaging/post_build_script.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

set -ex

Expand Down
5 changes: 5 additions & 0 deletions packaging/pre_build_script.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/bin/bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

set -ex

Expand Down
6 changes: 6 additions & 0 deletions packaging/vc_env_helper.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
:: Copyright (c) Meta Platforms, Inc. and affiliates.
:: All rights reserved.
::
:: This source code is licensed under the BSD-style license found in the
:: LICENSE file in the root directory of this source tree.

:: Taken from torchaudio
@echo on

Expand Down
Loading