12345678910111213141516171819202122232425262728293031 |
- From 4246fcf2c0c1c6518a5689c8a0ee2662f67c4030 Mon Sep 17 00:00:00 2001
- From: Guillem Jover <guillem@hadrons.org>
- Date: Sun, 12 Apr 2020 04:00:03 +0200
- Subject: [PATCH libaio 10/11] build: Do not use -Werror by default
- Using -Werror on a released project is in general not a good idea, as
- changes in the toolchain and environment can trigger unexpected build
- failures.
- Signed-off-by: Guillem Jover <guillem@hadrons.org>
- ---
- harness/Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- diff --git a/harness/Makefile b/harness/Makefile
- index 5cc2b25..84e03a6 100644
- --- a/harness/Makefile
- +++ b/harness/Makefile
- @@ -6,7 +6,7 @@ PROGS:=$(PARTPROGS) $(EXTRAPROGS)
- HARNESS_SRCS:=main.c
- # io_queue.c
-
- -CFLAGS+=-Wall -Werror -I../src -g -O2
- +CFLAGS+=-Wall -I../src -g -O2
- #-lpthread -lrt
-
- # Change this on the build line to run tests against the installed libraries:
- --
- 2.26.0.292.g33ef6b2f38
|