diff options
author | Torbjörn Svensson | 2020-11-05 19:35:34 +0000 |
---|---|---|
committer | Jonah Graham | 2020-11-06 01:24:54 +0000 |
commit | 7f7a310c0723050f86f4f57ec6c85e61a72e2e97 (patch) | |
tree | f365f7ac744e65c5ee7ab71256380cb287229a68 | |
parent | 477fdab7a127f00b902bfe9249a970496c7a7435 (diff) | |
download | org.eclipse.cdt-7f7a310c0723050f86f4f57ec6c85e61a72e2e97.tar.gz org.eclipse.cdt-7f7a310c0723050f86f4f57ec6c85e61a72e2e97.tar.xz org.eclipse.cdt-7f7a310c0723050f86f4f57ec6c85e61a72e2e97.zip |
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>
-rw-r--r-- | core/org.eclipse.cdt.core.native/native_src/Makefile | 2 | ||||
-rwxr-xr-x | core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/pty.dll | bin | 1037897 -> 1037897 bytes | |||
-rwxr-xr-x | core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/spawner.dll | bin | 334839 -> 334839 bytes | |||
-rwxr-xr-x | core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/starter.exe | bin | 402799 -> 402799 bytes | |||
-rw-r--r-- | native/org.eclipse.cdt.native.serial/native_src/Makefile | 2 | ||||
-rwxr-xr-x | native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll | bin | 381152 -> 381152 bytes |
6 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.core.native/native_src/Makefile b/core/org.eclipse.cdt.core.native/native_src/Makefile index dcd644faced..914324a201b 100644 --- a/core/org.eclipse.cdt.core.native/native_src/Makefile +++ b/core/org.eclipse.cdt.core.native/native_src/Makefile @@ -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) diff --git a/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/pty.dll b/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/pty.dll Binary files differindex 77bcd08ed48..2dc4174a57d 100755 --- a/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/pty.dll +++ b/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/pty.dll diff --git a/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/spawner.dll b/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/spawner.dll Binary files differindex a6c64e1ac1d..df14caadec9 100755 --- a/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/spawner.dll +++ b/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/spawner.dll diff --git a/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/starter.exe b/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/starter.exe Binary files differindex a9402afee59..919062dbd93 100755 --- a/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/starter.exe +++ b/core/org.eclipse.cdt.core.win32.x86_64/os/win32/x86_64/starter.exe diff --git a/native/org.eclipse.cdt.native.serial/native_src/Makefile b/native/org.eclipse.cdt.native.serial/native_src/Makefile index e3cbc23cb05..27d62fe8c56 100644 --- a/native/org.eclipse.cdt.native.serial/native_src/Makefile +++ b/native/org.eclipse.cdt.native.serial/native_src/Makefile @@ -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) diff --git a/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll b/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll Binary files differindex 5a68572e0c9..c4cc3e47a28 100755 --- a/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll +++ b/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll |