aboutsummaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorThomas Gubler <thomasgubler@gmail.com>2015-01-22 09:30:43 +0100
committerThomas Gubler <thomasgubler@gmail.com>2015-01-22 09:30:43 +0100
commit8c4fce3654bbf4cb31314f1fb596f4fd17772589 (patch)
treebaf3d096173055675b1fbc7362e0756eec69918c /makefiles
parent2af44f5995dd121a7ce2aefd3ab1c7d8dcf3fb8d (diff)
downloadpx4-firmware-8c4fce3654bbf4cb31314f1fb596f4fd17772589.tar.gz
px4-firmware-8c4fce3654bbf4cb31314f1fb596f4fd17772589.tar.bz2
px4-firmware-8c4fce3654bbf4cb31314f1fb596f4fd17772589.zip
multiplatform: better publisher base class
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/toolchain_gnu-arm-eabi.mk40
1 files changed, 20 insertions, 20 deletions
diff --git a/makefiles/toolchain_gnu-arm-eabi.mk b/makefiles/toolchain_gnu-arm-eabi.mk
index 396980453..d38ef645f 100644
--- a/makefiles/toolchain_gnu-arm-eabi.mk
+++ b/makefiles/toolchain_gnu-arm-eabi.mk
@@ -125,26 +125,26 @@ ARCHCXXFLAGS = -fno-exceptions -fno-rtti -std=gnu++0x -fno-threadsafe-statics
# Generic warnings
#
-ARCHWARNINGS = -Wall \
- -Wextra \
- -Werror \
- -Wdouble-promotion \
- -Wshadow \
- -Wfloat-equal \
- -Wframe-larger-than=1024 \
- -Wpointer-arith \
- -Wlogical-op \
- -Wmissing-declarations \
- -Wpacked \
- -Wno-unused-parameter \
- -Werror=format-security \
- -Werror=array-bounds \
- -Wfatal-errors \
- -Wformat=1 \
- -Werror=unused-but-set-variable \
- -Werror=unused-variable \
- -Werror=double-promotion \
- -Werror=reorder
+# ARCHWARNINGS = -Wall \
+ # -Wextra \
+ # -Werror \
+ # -Wdouble-promotion \
+ # -Wshadow \
+ # -Wfloat-equal \
+ # -Wframe-larger-than=1024 \
+ # -Wpointer-arith \
+ # -Wlogical-op \
+ # -Wmissing-declarations \
+ # -Wpacked \
+ # -Wno-unused-parameter \
+ # -Werror=format-security \
+ # -Werror=array-bounds \
+ # -Wfatal-errors \
+ # -Wformat=1 \
+ # -Werror=unused-but-set-variable \
+ # -Werror=unused-variable \
+ # -Werror=double-promotion \
+ # -Werror=reorder
# -Wcast-qual - generates spurious noreturn attribute warnings, try again later
# -Wconversion - would be nice, but too many "risky-but-safe" conversions in the code
# -Wcast-align - would help catch bad casts in some cases, but generates too many false positives