]> Git Repo - buildroot-mgba.git/commitdiff
ucl: Use -std=iso9899:1990 instead of -std=c90
authorAlexey Neyman <[email protected]>
Wed, 25 Jan 2017 19:20:20 +0000 (11:20 -0800)
committerThomas Petazzoni <[email protected]>
Thu, 26 Jan 2017 07:58:41 +0000 (20:58 +1300)
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 <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
package/ucl/ucl.mk

index e4dc1b3eda2f92a81e458fec1080a1791016020d..b183a13b26b68dcba2a1a8c07c6250f1b13e5fa6 100644 (file)
@@ -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))
This page took 0.035522 seconds and 4 git commands to generate.