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
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ description = 'AV1 video codec library reference implementation, published by th

toolchain = {'name': 'GCCcore', 'version': '14.2.0'}

# use -fno-tree-ter when building on Arm systems,
# to work around for segmentation fault in GCC 14.2.0 (fixed in GCC 14.3.0),
# see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115464
if ARCH == 'aarch64':
toolchainopts = {'extra_cflags': '-fno-tree-ter'}

sources = [{
'filename': SOURCELOWER_TAR_XZ,
'git_config': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ applicable to a wide range of applications, from premium VOD to real-time and li

toolchain = {'name': 'GCCcore', 'version': '14.2.0'}

# use -fno-tree-ter when building on Arm systems,
# to work around for segmentation fault in GCC 14.2.0 (fixed in GCC 14.3.0),
# see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115464
if ARCH == 'aarch64':
toolchainopts = {'extra_cflags': '-fno-tree-ter'}

source_urls = ['https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v%(version)s']
sources = ['%(name)s-v%(version)s.tar.gz']
checksums = ['d0d73bfea42fdcc1222272bf2b0e2319e9df5574721298090c3d28315586ecb1']
Expand Down