blob: 7bb23845074098920633b9f3f9942e43ad00fff8 [file] [log] [blame]
Stephen Hines0467bc42014-05-05 15:11:12 -07001#
2# Copyright (C) 2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# This file contains target-specific defines for projects including LLVM
18# and/or libbcc directly.
19
20LOCAL_CFLAGS_arm += -DFORCE_ARM_CODEGEN
21ifeq ($(ARCH_ARM_HAVE_VFP),true)
22 LOCAL_CFLAGS_arm += -DARCH_ARM_HAVE_VFP
23 ifeq ($(ARCH_ARM_HAVE_VFP_D32),true)
24 LOCAL_CFLAGS_arm += -DARCH_ARM_HAVE_VFP_D32
25 endif
26endif
27ifeq ($(ARCH_ARM_HAVE_NEON),true)
28 LOCAL_CFLAGS_arm += -DARCH_ARM_HAVE_NEON
29endif
30
Tim Murraya5b13432014-06-13 15:38:46 -070031LOCAL_CFLAGS_arm64 += -DFORCE_ARM64_CODEGEN -DARCH_ARM_HAVE_NEON -DARCH_ARM_HAVE_VFP -DARCH_ARM_HAVE_VFP_D32 -DDISABLE_CLCORE_NEON
Stephen Hines0467bc42014-05-05 15:11:12 -070032LOCAL_CFLAGS_mips += -DFORCE_MIPS_CODEGEN
Dragoslav Sicarovd5a42042014-05-22 15:00:18 +000033LOCAL_CFLAGS_mips64 += -DFORCE_MIPS64_CODEGEN
Stephen Hines0467bc42014-05-05 15:11:12 -070034
35LOCAL_CFLAGS_x86 += -DFORCE_X86_CODEGEN
36LOCAL_CFLAGS_x86_64 += -DFORCE_X86_64_CODEGEN
37
Tim Murray38883df2014-10-15 14:05:01 -070038ifeq ($(BUILD_ARM_FOR_X86),true)
39LOCAL_CFLAGS_x86 += -DPROVIDE_ARM_CODEGEN -DFORCE_BUILD_ARM
jgu216b59b5b2015-03-04 03:39:44 -050040LOCAL_CFLAGS_x86_64 += -DPROVIDE_ARM_CODEGEN -DFORCE_BUILD_ARM -DPROVIDE_ARM64_CODEGEN
Tim Murray38883df2014-10-15 14:05:01 -070041endif
42
43
Stephen Hines0467bc42014-05-05 15:11:12 -070044ifeq (,$(filter $(TARGET_ARCH),arm64 arm mips mips64 x86 x86_64))
45 $(error Unsupported architecture $(TARGET_ARCH))
46endif
47