diff options
author | Sam James <sam@gentoo.org> | 2022-06-17 03:39:46 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-17 03:43:42 +0100 |
commit | 51dfd93c5122df670d2753070807e5a172727ded (patch) | |
tree | 0eb32dfd4e1b8bd7f5135b9c85fc713be75473f9 | |
parent | wrappers: use /var/cache/binpkgs as PKGDIR (diff) | |
download | crossdev-51dfd93c5122df670d2753070807e5a172727ded.tar.gz crossdev-51dfd93c5122df670d2753070807e5a172727ded.tar.bz2 crossdev-51dfd93c5122df670d2753070807e5a172727ded.zip |
site: add linux-musl20220617
Follow-up to 8b1b79e02cc36bc6f2b5583db6aeea333fb8d59b.
Sets
```
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_realloc_0_nonnull=yes
```
... to sort out flex and a bunch of other packages, like procps.
I was wondering why this never seemed to come up when doing cross
for other "standard" targets which we know work and are used often;
the answer is that we never had the -musl suffix CHOSTs covered.
(e.g. linux-gnu already has this set.)
Bug: https://bugs.gentoo.org/554032
Closes: https://bugs.gentoo.org/675368
Closes: https://bugs.gentoo.org/705800
See: 8b1b79e02cc36bc6f2b5583db6aeea333fb8d59b
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | wrappers/site/linux-musl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wrappers/site/linux-musl b/wrappers/site/linux-musl new file mode 100644 index 0000000..d126046 --- /dev/null +++ b/wrappers/site/linux-musl @@ -0,0 +1,4 @@ +# sys-devel/flex-2.5.35 +# bug #705800 and many others +ac_cv_func_malloc_0_nonnull=yes +ac_cv_func_realloc_0_nonnull=yes |