Home | History | Annotate | Download | only in core

Lines Matching refs:HOST

80 # Target and host installed module's dependencies on shared libraries.
96 HOST_DISPLAY := host
97 HOST_CROSS_DISPLAY := host cross
501 define def-host-aux-target
502 $(eval _idf_val_:=$(if $(strip $(LOCAL_IS_HOST_MODULE)),HOST,$(if $(strip $(LOCAL_IS_AUX_MODULE)),AUX,))) \
508 ## { HOST, HOST_CROSS, AUX, TARGET }
514 # => HOST;
518 $(eval _idf_pfx_:=$(if $(strip $(1)),$(if $(_idf_pfx_),$(_idf_pfx_),$(if $(strip $(2)),HOST_CROSS,HOST)),TARGET)) \
533 # $(3): { HOST, HOST_CROSS, AUX, <empty (TARGET)>, <other non-empty (HOST)> }
536 # $(6): if non-empty, force the intermediates to be for the host cross os
563 # $(3): if non-empty, force the intermediates to be for the host cross os
570 $(call intermediates-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(call def-host-aux-target),$(1),$(2),$(3)) \
585 # $(3): { HOST, HOST_CROSS, AUX, <empty (TARGET)>, <other non-empty (HOST)> }
615 $(call generated-sources-dir-for,$(LOCAL_MODULE_CLASS),$(LOCAL_MODULE),$(call def-host-aux-target),$(1)) \
1337 ## Commands for running gcc to compile a host C++ file
1340 define transform-host-cpp-to-o-compiler-args
1354 define clang-tidy-host-cpp
1357 $< -- $(transform-host-cpp-to-o-compiler-args)
1361 define transform-host-cpp-to-o
1364 $(clang-tidy-host-cpp))
1367 define transform-host-cpp-to-o
1370 $(if $(PRIVATE_TIDY_CHECKS),$(clang-tidy-host-cpp))
1372 $(transform-host-cpp-to-o-compiler-args) \
1379 ## Commands for running gcc to compile a host C file
1382 define transform-host-c-or-s-to-o-common-args
1392 define transform-host-c-or-s-to-o
1395 $(transform-host-c-or-s-to-o-common-args) \
1400 define transform-host-c-to-o-compiler-args
1401 $(transform-host-c-or-s-to-o-common-args) \
1406 define clang-tidy-host-c
1409 $< -- $(transform-host-c-to-o-compiler-args)
1413 define transform-host-c-to-o
1416 $(clang-tidy-host-c))
1419 define transform-host-c-to-o
1422 $(if $(PRIVATE_TIDY_CHECKS), $(clang-tidy-host-c))
1424 $(transform-host-c-to-o-compiler-args) \
1429 define transform-host-s-to-o
1431 $(call transform-host-c-or-s-to-o, $(PRIVATE_ASFLAGS))
1435 ## Commands for running gcc to compile a host Objective-C file
1438 define transform-host-m-to-o
1440 $(call transform-host-c-or-s-to-o, $(PRIVATE_CFLAGS) $(PRIVATE_DEBUG_CFLAGS) $(PRIVATE_CFLAGS_NO_OVERRIDE))
1444 host Objective-C++ file
1447 define transform-host-mm-to-o
1448 $(transform-host-cpp-to-o)
1672 ## Commands for running host ar
1677 define _extract-and-include-single-host-whole-static-lib
1702 define extract-and-include-host-whole-static-libs
1705 $(call _extract-and-include-single-host-whole-static-lib, $(lib),$(1)))
1709 # On Darwin the host ar fails if there is nothing to add to .a at all.
1727 define transform-host-o-to-static-lib
1731 $(call extract-and-include-host-whole-static-libs,$@.tmp)
1748 define transform-host-o-to-shared-lib-inner
1773 define transform-host-o-to-shared-lib
1776 $(transform-host-o-to-shared-lib-inner)
1779 define transform-host-o-to-package
1782 $(transform-host-o-to-shared-lib-inner)
1954 ## Commands for running gcc to link a host executable
1967 define transform-host-o-to-executable-inner
1991 define transform-host-o-to-executable
1994 $(transform-host-o-to-executable-inner)
2197 # Common definition to invoke javac on the host and target.
2759 define transform-host-java-to-package