1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Bug 568079: Warnings as errors

All compile warnings for native code should be handled.

Change-Id: I5ee391fd24339cb55646dbd2980d2856fabe8ddb
Signed-off-by: Torbjörn Svensson <azoff@svenskalinuxforeningen.se>
This commit is contained in:
Torbjörn Svensson 2020-11-05 20:35:34 +01:00 committed by Jonah Graham
parent 477fdab7a1
commit 7f7a310c07
6 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ OS_DIR_LINUX_PPC64LE := ../../org.eclipse.cdt.core.linux.ppc64le/os/linux/ppc64l
OS_DIR_MACOS_X86_64 := ../../org.eclipse.cdt.core.macosx/os/macosx/x86_64
OS_DIR_MACOS_X86 := ../../org.eclipse.cdt.core.macosx/os/macosx/x86
COMMON_CFLAGS := -Wall -pedantic
COMMON_CFLAGS := -Wall -pedantic -Werror
UNAME = $(shell uname)
ifeq ($(UNAME),Linux)

View file

@ -22,7 +22,7 @@ REPRODUCIBLE_BUILD_WRAPPER := $(shell git rev-parse --show-toplevel)/releng/scri
OS_DIR = ../os
CFLAGS += -fPIC -D_REENTRANT
COMMON_CFLAGS := -Wall -pedantic
COMMON_CFLAGS := -Wall -pedantic -Werror
UNAME = $(shell uname)
ifeq ($(UNAME),Linux)