2010-02-23 21:36:56 +01:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# Select a combo based on the compiler being used.
|
|
|
|
#
|
|
|
|
# Inputs:
|
|
|
|
# combo_target -- prefix for final variables (HOST_ or TARGET_)
|
2014-04-17 19:03:35 +02:00
|
|
|
# combo_2nd_arch_prefix -- it's defined if this is loaded for the 2nd arch.
|
2009-03-04 04:28:42 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# Build a target string like "linux-arm" or "darwin-x86".
|
2014-04-17 19:03:35 +02:00
|
|
|
combo_os_arch := $($(combo_target)OS)-$($(combo_target)$(combo_2nd_arch_prefix)ARCH)
|
2013-12-27 20:09:36 +01:00
|
|
|
|
|
|
|
combo_var_prefix := $(combo_2nd_arch_prefix)$(combo_target)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2010-02-23 21:36:56 +01:00
|
|
|
# Set reasonable defaults for the various variables
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-05-27 21:30:36 +02:00
|
|
|
$(combo_var_prefix)GLOBAL_ARFLAGS := crsPD
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_var_prefix)STATIC_LIB_SUFFIX := .a
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
# Now include the combo for this specific target.
|
2010-02-23 21:36:56 +01:00
|
|
|
include $(BUILD_COMBOS)/$(combo_target)$(combo_os_arch).mk
|