1 From 76de6db1bc69b2239d8fb91fd65b74610cb8e22f Mon Sep 17 00:00:00 2001
2 From: Cristian Stoica <cristian.stoica@nxp.com>
3 Date: Thu, 27 Oct 2016 16:41:10 +0300
4 Subject: [PATCH 077/104] the C standard used by cryptodev is C90 with GNU
7 This avoids some problems with gcc>=5.0 which chaged the default to C11.
8 The choice for gnu90 is based on the C standard used by Linux kernel which
11 Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com>
16 3 files changed, 5 insertions(+), 5 deletions(-)
18 diff --git a/Makefile b/Makefile
19 index 90e86d9..80439f6 100644
23 # disabled by default. To re-enable it uncomment the
24 # corresponding CFLAG.
26 -CRYPTODEV_CFLAGS += -DENABLE_ASYNC
27 +CRYPTODEV_CFLAGS += -DENABLE_ASYNC -std=gnu90
28 KBUILD_CFLAGS += -I$(src) $(CRYPTODEV_CFLAGS)
29 KERNEL_DIR ?= /lib/modules/$(shell uname -r)/build
31 @@ -38,10 +38,10 @@ modules_install:
33 $(MAKE) $(KERNEL_MAKE_OPTS) clean
35 - CFLAGS=$(CRYPTODEV_CFLAGS) KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C tests clean
36 + CFLAGS="$(CRYPTODEV_CFLAGS)" KERNEL_DIR="$(KERNEL_DIR)" $(MAKE) -C tests clean
39 - CFLAGS=$(CRYPTODEV_CFLAGS) KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C tests check
40 + CFLAGS="$(CRYPTODEV_CFLAGS)" KERNEL_DIR="$(KERNEL_DIR)" $(MAKE) -C tests check
43 KERNEL_DIR=$(KERNEL_DIR) $(MAKE) -C tests all
44 diff --git a/lib/Makefile b/lib/Makefile
45 index 3bedc34..0044613 100644
50 +CFLAGS=-g -O2 -Wall -std=gnu90
54 diff --git a/tests/Makefile b/tests/Makefile
55 index e7a60cb..23d67f9 100644
59 -CRYPTODEV_CFLAGS += -DENABLE_ASYNC -Wall -Werror
60 +CRYPTODEV_CFLAGS += -DENABLE_ASYNC -std=gnu90 -Wall -Werror
61 CFLAGS += -I.. $(CRYPTODEV_CFLAGS)
63 comp_progs := cipher_comp hash_comp hmac_comp