Skip to content

Commit

Permalink
Makefile: update to work with GCC 4.7 toolchain
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Reioux <reioux@gmail.com>
  • Loading branch information
faux123 committed Oct 21, 2013
1 parent a3c3a5e commit 8ad5dd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -354,10 +354,10 @@ CC = $(srctree)/scripts/gcc-wrapper.py $(REAL_CC)

CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
-Wbitwise -Wno-return-void $(CF)
CFLAGS_MODULE = -fno-pic -mcpu=cortex-a15 -mtune=cortex-a15 -mfpu=neon-vfpv4
CFLAGS_MODULE = -munaligned-access -fno-pic -mfpu=neon-vfpv4
AFLAGS_MODULE =
LDFLAGS_MODULE =
CFLAGS_KERNEL = -mcpu=cortex-a15 -mtune=cortex-a15 -mfpu=neon-vfpv4
CFLAGS_KERNEL = -munaligned-access -mfpu=neon-vfpv4
AFLAGS_KERNEL =
CFLAGS_GCOV = -fprofile-arcs -ftest-coverage

Expand Down

0 comments on commit 8ad5dd6

Please sign in to comment.