OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BUILD_OUTPUT
(Results
1 - 7
of
7
) sorted by null
/ndk/tests/build/warn-no-ldflags-in-static-libraries/
build.sh
4
BUILD_OUTPUT
=$($NDK/ndk-build "$@" 2>&1)
7
printf "%s\n" "$
BUILD_OUTPUT
"
10
printf "%s\n" "$
BUILD_OUTPUT
" | grep -q -e "WARNING:.*LOCAL_LDFLAGS is always ignored for static libraries"
13
printf "%s\n" "$
BUILD_OUTPUT
"
/ndk/tests/build/warn-no-ldlibs-in-static-libraries/
build.sh
4
BUILD_OUTPUT
=$($NDK/ndk-build "$@" 2>&1)
7
printf "%s\n" "$
BUILD_OUTPUT
"
10
printf "%s\n" "$
BUILD_OUTPUT
" | grep -q -e "WARNING:.*LOCAL_LDLIBS is always ignored for static libraries"
13
printf "%s\n" "$
BUILD_OUTPUT
"
/ndk/tests/build/warn-bad-modules/
build.sh
4
BUILD_OUTPUT
=$($NDK/ndk-build "$@" 2>&1)
7
printf "%s\n" "$
BUILD_OUTPUT
" | grep -q -e "WARNING: No modules to build.*your APP_MODULES definition is probably incorrect!"
10
printf "%s\n" "$
BUILD_OUTPUT
"
/ndk/tests/build/warn-no-modules/
build.sh
4
BUILD_OUTPUT
=$($NDK/ndk-build "$@" 2>&1)
7
printf "%s\n" "$
BUILD_OUTPUT
" | grep -q -e "WARNING: There are no modules to build in this project"
10
printf "%s\n" "$
BUILD_OUTPUT
"
/ndk/tests/build/warn-non-system-libs-in-linker-flags/
build.sh
4
BUILD_OUTPUT
=$($NDK/ndk-build "$@" 2>&1)
7
printf "%s\n" "$
BUILD_OUTPUT
" | grep -q -e "WARNING:.*non-system libraries in linker flags: -lfoo"
10
printf "%s\n" "$
BUILD_OUTPUT
"
/ndk/tests/build/warn-thin-archive-is-for-static-libraries/
build.sh
4
BUILD_OUTPUT
=$($NDK/ndk-build "$@" 2>&1)
7
printf "%s\n" "$
BUILD_OUTPUT
" | grep -q -e "WARNING:.*: LOCAL_THIN_ARCHIVE is for building static libraries"
10
printf "%s\n" "$
BUILD_OUTPUT
"
/external/linux-tools-perf/src/tools/lib/traceevent/
Makefile
56
BUILD_OUTPUT
:= $(O)
60
ifneq ($(
BUILD_OUTPUT
),)
62
define
build_output
macro
63
$(if $(VERBOSE:1=),@)+$(MAKE) -C $(
BUILD_OUTPUT
) \
67
saved-output := $(
BUILD_OUTPUT
)
68
BUILD_OUTPUT
:= $(shell cd $(
BUILD_OUTPUT
) && /bin/pwd)
69
$(if $(
BUILD_OUTPUT
),, \
77
$(call
build_output
, $(MAKECMDGOALS))
83
endif #
BUILD_OUTPUT
[
all
...]
Completed in 32 milliseconds