Re: [PATCH v2] kernel: use the gnu89 standard explicitly

2014-11-14 Thread Sasha Levin
On 11/14/2014 08:43 AM, Andrey Ryabinin wrote: > 2014-10-20 5:40 GMT+03:00 Sasha Levin : >> gcc5 changes the default standard to c11, which makes kernel >> build unhappy. >> >> Explicitly define the kernel standard to be gnu89 which should >> keep everything working exactly like it was before

Re: [PATCH v2] kernel: use the gnu89 standard explicitly

2014-11-14 Thread Andrey Ryabinin
2014-10-20 5:40 GMT+03:00 Sasha Levin : > gcc5 changes the default standard to c11, which makes kernel > build unhappy. > > Explicitly define the kernel standard to be gnu89 which should > keep everything working exactly like it was before gcc5. > Ping. -- To unsubscribe from this list: send the

Re: [PATCH v2] kernel: use the gnu89 standard explicitly

2014-11-14 Thread Andrey Ryabinin
2014-10-20 5:40 GMT+03:00 Sasha Levin sasha.le...@oracle.com: gcc5 changes the default standard to c11, which makes kernel build unhappy. Explicitly define the kernel standard to be gnu89 which should keep everything working exactly like it was before gcc5. Ping. -- To unsubscribe from this

Re: [PATCH v2] kernel: use the gnu89 standard explicitly

2014-11-14 Thread Sasha Levin
On 11/14/2014 08:43 AM, Andrey Ryabinin wrote: 2014-10-20 5:40 GMT+03:00 Sasha Levin sasha.le...@oracle.com: gcc5 changes the default standard to c11, which makes kernel build unhappy. Explicitly define the kernel standard to be gnu89 which should keep everything working exactly like it was

Re: [PATCH v2] kernel: use the gnu89 standard explicitly

2014-10-20 Thread Kirill A. Shutemov
On Sun, Oct 19, 2014 at 10:40:55PM -0400, Sasha Levin wrote: > gcc5 changes the default standard to c11, which makes kernel > build unhappy. > > Explicitly define the kernel standard to be gnu89 which should > keep everything working exactly like it was before gcc5. > > Signed-off-by: Sasha

Re: [PATCH v2] kernel: use the gnu89 standard explicitly

2014-10-20 Thread Kirill A. Shutemov
On Sun, Oct 19, 2014 at 10:40:55PM -0400, Sasha Levin wrote: gcc5 changes the default standard to c11, which makes kernel build unhappy. Explicitly define the kernel standard to be gnu89 which should keep everything working exactly like it was before gcc5. Signed-off-by: Sasha Levin

[PATCH v2] kernel: use the gnu89 standard explicitly

2014-10-19 Thread Sasha Levin
gcc5 changes the default standard to c11, which makes kernel build unhappy. Explicitly define the kernel standard to be gnu89 which should keep everything working exactly like it was before gcc5. Signed-off-by: Sasha Levin --- Changes from v1: - I've accidently placed the statement in a

[PATCH v2] kernel: use the gnu89 standard explicitly

2014-10-19 Thread Sasha Levin
gcc5 changes the default standard to c11, which makes kernel build unhappy. Explicitly define the kernel standard to be gnu89 which should keep everything working exactly like it was before gcc5. Signed-off-by: Sasha Levin sasha.le...@oracle.com --- Changes from v1: - I've accidently placed