Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 41669b46 authored by Koushik Dutta's avatar Koushik Dutta Committed by Ricardo Cerqueira
Browse files

Revert "Use correct CFLAGS for MSM7200A class phones."

This reverts commit b8c8d73c.

Set up a new arch for MSM7200A class phones. TARGET_ARCH_VARIANT := armv6j should be used.

Change-Id: I10d699eff87d0e7fe9175e2321ade7e0fd8a87cc

cleanup trailing linefeed

Change-Id: Iab7f8d4e7f4a15039a2727ad0d805696847cafbc
parent 17cede05
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
# Configuration for Linux on ARM.
# Generating binaries for the ARMv5TE architecture and higher
#
ARCH_ARM_HAVE_THUMB_SUPPORT     := true
ARCH_ARM_HAVE_FAST_INTERWORKING := true
ARCH_ARM_HAVE_64BIT_DATA        := true
ARCH_ARM_HAVE_HALFWORD_MULTIPLY := true
ARCH_ARM_HAVE_CLZ               := true
ARCH_ARM_HAVE_FFS               := true

# Note: Hard coding the 'tune' value here is probably not ideal,
# and a better solution should be found in the future.
#
arch_variant_cflags := \
    -march=armv6j \
    -mtune=arm1136jf-s \
    -pipe \
    -fomit-frame-pointer \
    -D__ARM_ARCH_5__ \
    -D__ARM_ARCH_5T__ \
    -D__ARM_ARCH_5E__ \
    -D__ARM_ARCH_5TE__