diff options
author | Alexey Neyman <stilor@att.net> | 2017-01-25 11:20:20 -0800 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-01-26 20:58:41 +1300 |
commit | 05a5866916f4c70249344aaed92292840e6eaaa8 (patch) | |
tree | 9810cf537f16aea845a23e7886fa26031544a18b | |
parent | 6c8f7011cb2246a5a546ff0bb12f723f2d7a9735 (diff) | |
download | buildroot-05a5866916f4c70249344aaed92292840e6eaaa8.tar.gz buildroot-05a5866916f4c70249344aaed92292840e6eaaa8.zip |
ucl: Use -std=iso9899:1990 instead of -std=c90
The shorter alias, -std=c90, is not known by older versions of GCC.
See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=20631.
Signed-off-by: Alexey Neyman <stilor@att.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/ucl/ucl.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/ucl/ucl.mk b/package/ucl/ucl.mk index e4dc1b3eda..b183a13b26 100644 --- a/package/ucl/ucl.mk +++ b/package/ucl/ucl.mk @@ -10,6 +10,6 @@ UCL_LICENSE = GPLv2+ UCL_LICENSE_FILES = COPYING # Fix ACC conformance test failure for host gcc 6.x -HOST_UCL_CONF_ENV += CPPFLAGS="$(HOST_CPPFLAGS) -std=c90" +HOST_UCL_CONF_ENV += CPPFLAGS="$(HOST_CPPFLAGS) -std=iso9899:1990" $(eval $(host-autotools-package)) |