Skip to content

Commit 8fc74d4

Browse files
author
Stephen Mathieson
committed
build: Remove warning suppression
Was failing to build on gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
1 parent aa9be27 commit 8fc74d4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Makefile

-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ TEST_EXECUTABLES = $(TEST_SOURCES:.c=)
1010

1111
test: $(TEST_EXECUTABLES)
1212

13-
$(TEST_EXECUTABLES): CFLAGS += -Wunused-parameter
1413
$(TEST_EXECUTABLES): CFLAGS += -Ideps/describe -Ideps
1514
$(TEST_EXECUTABLES): $(OBJS)
1615
@$(CC) $@.c $^ -o $@ $(CFLAGS) $(LDFLAGS)
1716
@$@
1817

19-
example: CFLAGS += -Wint-to-void-pointer-cast
2018
example: example.o $(OBJS)
2119
$(CC) $^ -o $@ $(CFLAGS) $(LDFLAGS)
2220

0 commit comments

Comments
 (0)