File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -91,14 +91,14 @@ matrix:
91
91
# GCC for the x86-64 architecture with restricted limb sizes
92
92
# formerly started with the option "--with-low-mp" to testme.sh
93
93
# but testing all three in one run took to long and timed out.
94
- - env : BUILDOPTIONS='--with-cc=gcc --cflags=-DMP_8BIT --with-valgrind'
95
- - env : BUILDOPTIONS='--with-cc=gcc --cflags=-DMP_16BIT --with-valgrind'
96
- - env : BUILDOPTIONS='--with-cc=gcc --cflags=-DMP_32BIT --with-valgrind'
94
+ - env : NO_CONV_WARNINGS=1 BUILDOPTIONS='--with-cc=gcc --cflags=-DMP_8BIT --with-valgrind'
95
+ - env : NO_CONV_WARNINGS=1 BUILDOPTIONS='--with-cc=gcc --cflags=-DMP_16BIT --with-valgrind'
96
+ - env : NO_CONV_WARNINGS=1 BUILDOPTIONS='--with-cc=gcc --cflags=-DMP_32BIT --with-valgrind'
97
97
98
98
# clang for the x86-64 architecture with restricted limb sizes
99
- - env : BUILDOPTIONS='--with-cc=clang --cflags=-DMP_8BIT --with-valgrind'
100
- - env : BUILDOPTIONS='--with-cc=clang --cflags=-DMP_16BIT --with-valgrind'
101
- - env : BUILDOPTIONS='--with-cc=clang --cflags=-DMP_32BIT --with-valgrind'
99
+ - env : NO_CONV_WARNINGS=1 BUILDOPTIONS='--with-cc=clang --cflags=-DMP_8BIT --with-valgrind'
100
+ - env : NO_CONV_WARNINGS=1 BUILDOPTIONS='--with-cc=clang --cflags=-DMP_16BIT --with-valgrind'
101
+ - env : NO_CONV_WARNINGS=1 BUILDOPTIONS='--with-cc=clang --cflags=-DMP_32BIT --with-valgrind'
102
102
103
103
# GCC for the x86-64 architecture testing against a different Bigint-implementation
104
104
# with 333333 different inputs.
Original file line number Diff line number Diff line change @@ -51,9 +51,13 @@ CFLAGS += -I./ -Wall -Wsign-compare -Wextra -Wshadow
51
51
52
52
ifndef NO_ADDTL_WARNINGS
53
53
# additional warnings
54
- # CFLAGS += -Wsystem-headers
55
54
CFLAGS += -Wdeclaration-after-statement -Wbad-function-cast -Wcast-align
56
55
CFLAGS += -Wstrict-prototypes -Wpointer-arith
56
+ endif
57
+
58
+ ifdef NO_CONV_WARNINGS
59
+ CFLAGS += -Wsystem-headers
60
+ else
57
61
CFLAGS += -Wconversion -Wsign-conversion
58
62
endif
59
63
You can’t perform that action at this time.
0 commit comments