Add missing include that triggers a build failure on PowerPC: ../../../../gcc-5.4.0/libsanitizer/asan/asan_linux.cc: In function ‘bool __asan::AsanInterceptsSignal(int)’: ../../../../gcc-5.4.0/libsanitizer/asan/asan_linux.cc:222:20: error: ‘SIGSEGV’ was not declared in this scope return signum == SIGSEGV && common_flags()->handle_segv; ^ From . diff --git a/libsanitizer/asan/asan_linux.cc b/libsanitizer/asan/asan_linux.cc index c504168..59087b9 100644 --- a/libsanitizer/asan/asan_linux.cc +++ b/libsanitizer/asan/asan_linux.cc @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include zko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-12-13build-system/pyproject: Use python-sans-pip-wrapper as default-python....Also adds python-setuptools and python-wheel to relevant packages, either to native-inputs or to propagated inputs if the pkg_resources Python module is loaded at runtime. * guix/build-system/pyproject.scm (default-python): Default to python-sans-pip-wrapper. Change-Id: I2d986c2225114f54459dd6bb360913106e52cdf4 Lars-Dominik Braun
2024-11-27gnu: vim: Update to 9.1.0889....* gnu/packages/vim.scm (vim): Update to 9.1.0889. [arguments]: Adjust the custom 'skip-or-fix-failing-tests to skip another test. Change-Id: I82806677bd9e33c6e683e3befb563631b4947cbe Efraim Flashner
2024-09-30gnu: vim-guix-vim: Update to 0.4.1....* gnu/packages/vim.scm (vim-guix-vim): Update to 0.4.1. Change-Id: I12a38efdbd6c0f9d8ce2155e7d7ecb0032739f0c Efraim Flashner
2024-09-29gnu: vim: Update to 9.1.0744....* gnu/packages/vim.scm (vim): Update to 9.1.0744. [arguments]: Delete another test in the 'skip-or-fix-failing-tests phase. Change-Id: Ic36691592abd350686df78d189196f827878be0b Efraim Flashner
2024-08-31gnu: vim-vlime: Fix build....* gnu/packages/vim.scm (vim-vlime)[arguments]: Correct order of phases. Change-Id: I449cceff6022cee481840e49b732a8bba8031a61 宋文武