blob: eaf636de0fe7d768f230de4f340a18cf41b8f513 [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 -070032
33LOCAL_CFLAGS_x86 += -DFORCE_X86_CODEGEN
34LOCAL_CFLAGS_x86_64 += -DFORCE_X86_64_CODEGEN
35
Tim Murray38883df2014-10-15 14:05:01 -070036ifeq ($(BUILD_ARM_FOR_X86),true)
37LOCAL_CFLAGS_x86 += -DPROVIDE_ARM_CODEGEN -DFORCE_BUILD_ARM
jgu216b59b5b2015-03-04 03:39:44 -050038LOCAL_CFLAGS_x86_64 += -DPROVIDE_ARM_CODEGEN -DFORCE_BUILD_ARM -DPROVIDE_ARM64_CODEGEN
Tim Murray38883df2014-10-15 14:05:01 -070039endif
40
41
Elliott Hughes51a5fda2020-03-06 21:32:45 -080042ifeq (,$(filter $(TARGET_ARCH),arm64 arm x86 x86_64))
Stephen Hines0467bc42014-05-05 15:11:12 -070043 $(error Unsupported architecture $(TARGET_ARCH))
44endif
45