OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NDK_ROOT
(Results
1 - 8
of
8
) sorted by null
/ndk/
GNUmakefile
27
NDK_ROOT
:= $(dir $(lastword $(MAKEFILE_LIST)))
28
NDK_ROOT
:= $(
NDK_ROOT
:%/=%)
31
ifneq ($(words $(
NDK_ROOT
)),1)
32
$(info,The Android NDK installation path contains spaces: '$(
NDK_ROOT
)')
36
include $(
NDK_ROOT
)/build/core/main.mk
/ndk/build/core/
main.mk
24
# This assumes we are located under $
NDK_ROOT
/build/core/main.mk
26
NDK_ROOT
:= $(lastword $(MAKEFILE_LIST))
27
NDK_ROOT
:= $(strip $(
NDK_ROOT
:%build/core/main.mk=%))
28
ifeq ($(
NDK_ROOT
),)
30
NDK_ROOT
:= .
33
NDK_ROOT
:= $(
NDK_ROOT
:%/=%)
36
$(info Android NDK: NDK installation path auto-detected: '$(
NDK_ROOT
)')
39
include $(
NDK_ROOT
)/build/core/init.m
[
all
...]
build-local.mk
21
# This assumes we are located under $
NDK_ROOT
/build/core/main.mk
23
NDK_ROOT
:= $(dir $(lastword $(MAKEFILE_LIST)))
24
NDK_ROOT
:= $(strip $(
NDK_ROOT
:%build/core/=%))
25
NDK_ROOT
:= $(
NDK_ROOT
:%/=%)
26
ifeq ($(
NDK_ROOT
),)
28
NDK_ROOT
:= .
31
$(info Android NDK: NDK installation path auto-detected: '$(
NDK_ROOT
)')
33
ifneq ($(words $(
NDK_ROOT
)),1
[
all
...]
setup-imports.mk
35
$(call import-add-path-optional,$(
NDK_ROOT
)/sources)
36
$(call import-add-path-optional,$(
NDK_ROOT
)/../development/ndk/sources)
init.mk
36
#
NDK_ROOT
*must* be defined and point to the root of the NDK installation
37
NDK_ROOT
:= $(strip $(
NDK_ROOT
))
38
ifndef
NDK_ROOT
39
$(error ERROR while including init.mk:
NDK_ROOT
must be defined !)
41
ifneq ($(words $(
NDK_ROOT
)),1)
42
$(info,The Android NDK installation path contains spaces: '$(
NDK_ROOT
)')
190
BUILD_AWK := $(
NDK_ROOT
)/build/awk
200
BUILD_SYSTEM := $(
NDK_ROOT
)/build/core
228
TOOLCHAIN_CONFIGS := $(wildcard $(
NDK_ROOT
)/toolchains/*/config.mk
[
all
...]
setup-toolchain.mk
77
TOOLCHAIN_ROOT := $(
NDK_ROOT
)/toolchains/$(TOOLCHAIN_NAME)
149
include $(
NDK_ROOT
)/sources/cxx-stl/system/setup.mk
definitions.mk
19
include $(
NDK_ROOT
)/build/gmsl/gmsl
[
all
...]
/ndk/build/tools/
build-ndk-sysroot.sh
111
NDK_ROOT
=`dirname $0`
112
NDK_ROOT
=`dirname $
NDK_ROOT
`
113
NDK_ROOT
=`dirname $
NDK_ROOT
`
134
SYSROOT=$
NDK_ROOT
/build/platforms/$PLATFORM/arch-$ABI
135
COMMON_ROOT=$
NDK_ROOT
/build/platforms/$PLATFORM/common
Completed in 129 milliseconds