summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-05-22 09:15:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-05-22 09:15:42 +0000
commit82034cbe40193b03f4cbc7f5707fe4a27dc38a90 (patch)
tree534cfad2582a02e7a81dcb4abf17d0daef948a1d /cpukit
parentRegenerate. (diff)
downloadrtems-82034cbe40193b03f4cbc7f5707fe4a27dc38a90.tar.bz2
2010-05-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* automake/compile.am: (Temporarily) Add -Werror=overflow, -Werror=pointer-to-int-cast, -Werror=int-to-pointer-cast.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/automake/compile.am3
2 files changed, 8 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index c375025038..8e5b2484c1 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-22 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * automake/compile.am: (Temporarily) Add -Werror=overflow,
+ -Werror=pointer-to-int-cast, -Werror=int-to-pointer-cast.
+
2010-05-20 Bharath Suri <bharath.s.jois@gmail.com>
* libcsupport/src/_rename_r.c: Avoid overwriting of errno by
diff --git a/cpukit/automake/compile.am b/cpukit/automake/compile.am
index 3d814261b6..1fe10fee5c 100644
--- a/cpukit/automake/compile.am
+++ b/cpukit/automake/compile.am
@@ -4,4 +4,7 @@
AM_CPPFLAGS = @RTEMS_CPPFLAGS@
AM_CFLAGS =
+AM_CFLAGS += -Werror=overflow
+AM_CFLAGS += -Werror=pointer-to-int-cast
+AM_CFLAGS += -Werror=int-to-pointer-cast
AM_CCASFLAGS = @RTEMS_CCASFLAGS@