diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-02-16 13:28:51 +0530 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2024-02-16 10:43:34 +0000 |
commit | 8aaf93180b48dd05c9e0e5696fc58cfc26805eed (patch) | |
tree | b406471b1d3cb78499009649d793ba50521fe65e | |
parent | d4bc777d6b3d04778a9281aac73a68843ab7507e (diff) |
cerbero: Ignore another spurious rustc failure on Windows
`exit code: 0xc0000409, STATUS_STACK_BUFFER_OVERRUN`
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1374>
-rw-r--r-- | cerbero/build/recipe.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cerbero/build/recipe.py b/cerbero/build/recipe.py index a4c85dff..97cd1f57 100644 --- a/cerbero/build/recipe.py +++ b/cerbero/build/recipe.py @@ -266,6 +266,7 @@ SOFTWARE LICENSE COMPLIANCE.\n\n''' ), Platform.WINDOWS: ( 'fatal error C1083: Cannot open compiler generated file:', + 'STATUS_STACK_BUFFER_OVERRUN', ), } |