16e95bb99d
This detail got lost in my previous cleanup change 9b4a812
.
Also add a comment explaining why the host side of the
simulator needs to be built in 64-bit (wxWidgets).
Change-Id: I2a867f7f80b43d53e73348b19f6ae834600295f9
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
#
|
|
# 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.
|
|
#
|
|
|
|
# Configuration for builds hosted on linux-x86.
|
|
# Included by combo/select.mk
|
|
|
|
# $(1): The file to check
|
|
define get-file-size
|
|
stat --format "%s" "$(1)" | tr -d '\n'
|
|
endef
|
|
|
|
# We build everything in 32-bit, because some host tools are
|
|
# 32-bit-only anyway (emulator, acc), and because it gives us
|
|
# more consistency between the host tools and the target.
|
|
# The exception is the host side of the simulator, which
|
|
# requires to use the default size, as wxWidgets code otherwise
|
|
# fails to build.
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
HOST_GLOBAL_CFLAGS += -m32
|
|
HOST_GLOBAL_LDFLAGS += -m32
|
|
endif
|
|
|
|
HOST_GLOBAL_CFLAGS += -fPIC
|
|
HOST_GLOBAL_CFLAGS += \
|
|
-include $(call select-android-config-h,linux-x86)
|
|
|
|
HOST_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
|