am d0427e49
: Merge "Workaround for a gcc-4.6 bug on -fstrict-volatile-bitfields."
* commit 'd0427e493edf2e4de2bd60fd1cc8253e9de233fd': Workaround for a gcc-4.6 bug on -fstrict-volatile-bitfields.
This commit is contained in:
commit
9987dbbbb4
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ TARGET_GLOBAL_CFLAGS += \
|
|||
# in gcc-4.4.x. We also want to disable sincos optimization globally
|
||||
# by turning off the builtin sin function.
|
||||
ifneq ($(filter 4.6.%, $(shell $(TARGET_CC) --version)),)
|
||||
TARGET_GLOBAL_CFLAGS += -Wno-unused-but-set-variable -fno-builtin-sin
|
||||
TARGET_GLOBAL_CFLAGS += -Wno-unused-but-set-variable -fno-builtin-sin \
|
||||
-fno-strict-volatile-bitfields
|
||||
endif
|
||||
|
||||
# This is to avoid the dreaded warning compiler message:
|
||||
|
|
Loading…
Reference in a new issue