Re: [PATCH] fortify-headers: fix compilation with GCC 10.3

2021-04-13 Thread Rosen Penev
On Tue, Apr 13, 2021 at 3:53 PM Hauke Mehrtens wrote: > > On 4/13/21 6:03 AM, Rosen Penev wrote: > > For some reason, fortified mempcpy does not work with GCC 10.3. It > > worked with GCC 10.2. > > > > Some output with tvheadend: > > > > error: 'mempcpy' undeclared here (not in a function); > >

Re: [PATCH] fortify-headers: fix compilation with GCC 10.3

2021-04-13 Thread Hauke Mehrtens
On 4/13/21 6:03 AM, Rosen Penev wrote: For some reason, fortified mempcpy does not work with GCC 10.3. It worked with GCC 10.2. Some output with tvheadend: error: 'mempcpy' undeclared here (not in a function); did you mean 'memccpy'? 144 | _FORTIFY_FN(mempcpy) void *mempcpy(void *__d, const

Re: [PATCH] fortify-headers: fix compilation with GCC 10.3

2021-04-13 Thread Paul Oranje via openwrt-devel
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- > Op 13 apr. 2021, om 06:03

[PATCH] fortify-headers: fix compilation with GCC 10.3

2021-04-12 Thread Rosen Penev
For some reason, fortified mempcpy does not work with GCC 10.3. It worked with GCC 10.2. Some output with tvheadend: error: 'mempcpy' undeclared here (not in a function); did you mean 'memccpy'? 144 | _FORTIFY_FN(mempcpy) void *mempcpy(void *__d, const void *__s, size_t __n) |