aboutsummaryrefslogtreecommitdiff
path: root/makefiles/toolchain_gnu-arm-eabi.mk
diff options
context:
space:
mode:
authorJulian Oes <julian@oes.ch>2014-04-26 11:48:43 +0200
committerJulian Oes <julian@oes.ch>2014-04-26 11:48:43 +0200
commitdcf1dbb7f4eeeb1c7654d3e7871551d6c2a63e57 (patch)
tree14c1bde88ec7d3f9007d75bac006ae6eb0c6e8ac /makefiles/toolchain_gnu-arm-eabi.mk
parentf0298e005a7d8f7bb0b9df98e64a2c59ff04d2b0 (diff)
downloadpx4-firmware-dcf1dbb7f4eeeb1c7654d3e7871551d6c2a63e57.tar.gz
px4-firmware-dcf1dbb7f4eeeb1c7654d3e7871551d6c2a63e57.tar.bz2
px4-firmware-dcf1dbb7f4eeeb1c7654d3e7871551d6c2a63e57.zip
warnings: don't spam with warning for missing field initializer
Diffstat (limited to 'makefiles/toolchain_gnu-arm-eabi.mk')
-rw-r--r--makefiles/toolchain_gnu-arm-eabi.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/makefiles/toolchain_gnu-arm-eabi.mk b/makefiles/toolchain_gnu-arm-eabi.mk
index bb729e103..1826b1e75 100644
--- a/makefiles/toolchain_gnu-arm-eabi.mk
+++ b/makefiles/toolchain_gnu-arm-eabi.mk
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2012 PX4 Development Team. All rights reserved.
+# Copyright (C) 2012-2014 PX4 Development Team. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
@@ -142,7 +142,8 @@ ARCHCWARNINGS = $(ARCHWARNINGS) \
# C++-specific warnings
#
-ARCHWARNINGSXX = $(ARCHWARNINGS)
+ARCHWARNINGSXX = $(ARCHWARNINGS) \
+ -Wno-missing-field-initializers
# pull in *just* libm from the toolchain ... this is grody
LIBM := $(shell $(CC) $(ARCHCPUFLAGS) -print-file-name=libm.a)