diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-02-16 13:28:51 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-02-16 13:55:06 +0530 |
commit | f26fbd03d86c0856062245e40a38eecdf5ad58a3 (patch) | |
tree | 2a53c52c3ccb7622cfc99c94536a50d6a138ab19 | |
parent | ad37405f6e9ca628dc9e0828daf5cef7a0cbcb97 (diff) |
cerbero: Ignore another spurious rustc failure on Windows1.23.2
`exit code: 0xc0000409, STATUS_STACK_BUFFER_OVERRUN`
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1373>
-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 0c7baffa..8b182d2e 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', ), } |