Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] ucl: Use -std=iso9899:1990 instead of -std=c90
@ 2017-01-25 19:20 Alexey Neyman
  2017-01-25 22:01 ` Thomas Petazzoni
  2017-01-26  7:59 ` Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Alexey Neyman @ 2017-01-25 19:20 UTC (permalink / raw)
  To: buildroot

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>
---
 package/ucl/ucl.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/ucl/ucl.mk b/package/ucl/ucl.mk
index e4dc1b3..b183a13 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))
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-01-26  8:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-25 19:20 [Buildroot] [PATCH 1/1] ucl: Use -std=iso9899:1990 instead of -std=c90 Alexey Neyman
2017-01-25 22:01 ` Thomas Petazzoni
2017-01-25 23:56   ` Alexey Neyman
2017-01-26  8:00     ` Thomas Petazzoni
2017-01-26  7:59 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox