We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ce6fe commit d99e5ceCopy full SHA for d99e5ce
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,12 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+ pull_request: {}
6
+
7
+jobs:
8
+ build_and_test:
9
+ runs-on: ubuntu-slim
10
+ steps:
11
+ - run: make
12
+ - run: make test
Makefile
@@ -25,7 +25,7 @@ endif
25
26
HOST_CC=gcc
27
CC=$(CROSS_PREFIX)gcc
28
-CFLAGS=-Wall -g -MMD -Werror -D_GNU_SOURCE -fno-math-errno -fno-trapping-math
+CFLAGS=-Wall -g -MMD -Werror -Wno-error=unused-result -D_GNU_SOURCE -fno-math-errno -fno-trapping-math
29
HOST_CFLAGS=-Wall -g -MMD -Werror -D_GNU_SOURCE -fno-math-errno -fno-trapping-math
30
ifdef CONFIG_ARM32
31
CFLAGS+=-mthumb
0 commit comments