findutils: ensure __nonnull is defined on macOS (#28316)
This commit is contained in:
parent
20bccc3843
commit
350d2da8b9
11
var/spack/repos/builtin/packages/findutils/nonnull.patch
Normal file
11
var/spack/repos/builtin/packages/findutils/nonnull.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- a/gl/lib/malloc/dynarray-skeleton.c
|
||||
+++ b/gl/lib/malloc/dynarray-skeleton.c
|
||||
@@ -85,6 +85,8 @@
|
||||
(if DYNARRAY_FINAL_TYPE is not defined)
|
||||
*/
|
||||
|
||||
#include <malloc/dynarray.h>
|
||||
+#undef __nonnull
|
||||
+#define __nonnull(x)
|
||||
|
||||
#include <errno.h>
|
@ -51,6 +51,11 @@ def url_for_version(self, version):
|
||||
patch('nvhpc.patch', when='@4.6.0 %nvhpc')
|
||||
# Workaround bug where __LONG_WIDTH__ is not defined
|
||||
patch('nvhpc-long-width.patch', when='@4.8.0:4.8 %nvhpc')
|
||||
# Auto-detecting whether `__attribute__((__nonnull__(...)))` is supported
|
||||
# does not work for GCC on macOS
|
||||
# <https://savannah.gnu.org/bugs/?func=detailitem&item_id=59972>; we thus
|
||||
# disable this attribute manually
|
||||
patch('nonnull.patch')
|
||||
|
||||
build_directory = 'spack-build'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user