commit | e7657a99b224a97250205b51449893ff3a6035ed | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Tue Jun 19 23:53:54 2018 -0400 |
committer | Tom Rini <trini@konsulko.com> | Thu Jun 21 08:58:50 2018 -0400 |
tree | 230f8575bad6e95b745b28bb8036e470d4ab9cc4 | |
parent | 077de2436d24b1b16ba803d5662eddab31529064 [diff] |
Makefile: Ensure we build with -std=gnu11 As many targets are now commonly built with gcc-6 or later (which defaults to a newer C standard than older compilers), certain C constructs are now being used as they produce more readable code. And while all compilers that we support building with support the C11 standard (and GNU11) they do not default to that standard. Ensure that we pass along -std=gnu11 when building. Signed-off-by: Tom Rini <trini@konsulko.com>