1# 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 31LOCAL_CFLAGS_arm64 += -DFORCE_ARM64_CODEGEN -DARCH_ARM_HAVE_NEON -DARCH_ARM_HAVE_VFP -DARCH_ARM_HAVE_VFP_D32 -DDISABLE_CLCORE_NEON 32 33LOCAL_CFLAGS_x86 += -DFORCE_X86_CODEGEN 34LOCAL_CFLAGS_x86_64 += -DFORCE_X86_64_CODEGEN 35 36ifeq ($(BUILD_ARM_FOR_X86),true) 37LOCAL_CFLAGS_x86 += -DPROVIDE_ARM_CODEGEN -DFORCE_BUILD_ARM 38LOCAL_CFLAGS_x86_64 += -DPROVIDE_ARM_CODEGEN -DFORCE_BUILD_ARM -DPROVIDE_ARM64_CODEGEN 39endif 40 41 42ifeq (,$(filter $(TARGET_ARCH),arm64 arm x86 x86_64)) 43 $(error Unsupported architecture $(TARGET_ARCH)) 44endif 45 46