diff options
| author | Michael Forney <mforney@mforney.org> | 2020-02-20 18:49:02 -0800 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2020-02-20 18:49:06 -0800 |
| commit | 0d8fcdb0bccfe0c41b887f39d94e105711dd917a (patch) | |
| tree | f158ae0f9acfc6b4e757cfbdc7142d0c66190f84 /pkg/musl/patch | |
| parent | 4cf930a35550348540635a99839b0b639c3aa355 (diff) | |
musl: Update to 1.2.0
Diffstat (limited to 'pkg/musl/patch')
| -rw-r--r-- | pkg/musl/patch/0001-unconditonally-define-alloca-as-__builtin_alloca.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pkg/musl/patch/0001-unconditonally-define-alloca-as-__builtin_alloca.patch b/pkg/musl/patch/0001-unconditonally-define-alloca-as-__builtin_alloca.patch deleted file mode 100644 index ca6aab40..00000000 --- a/pkg/musl/patch/0001-unconditonally-define-alloca-as-__builtin_alloca.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 6713ec14544e51af61ac40b01b0021df791b38ea Mon Sep 17 00:00:00 2001 -From: Michael Forney <mforney@mforney.org> -Date: Tue, 19 Nov 2019 01:56:34 -0800 -Subject: [PATCH] unconditonally define alloca as __builtin_alloca - -This enables alternative compilers, which may not define __GNUC__, -to implement alloca, which is still fairly widely used. - -This is similar to how stdarg.h already works in musl; compilers must -implement __builtin_va_arg, there is no fallback definition. ---- - include/alloca.h | 2 -- - 1 file changed, 2 deletions(-) - -diff --git a/include/alloca.h b/include/alloca.h -index d2e6f1c6..b8d183d1 100644 ---- a/include/alloca.h -+++ b/include/alloca.h -@@ -10,9 +10,7 @@ extern "C" { - - void *alloca(size_t); - --#ifdef __GNUC__ - #define alloca __builtin_alloca --#endif - - #ifdef __cplusplus - } --- -2.25.0 - |
