Home
last modified time | relevance | path

Searched refs:build (Results 1 – 25 of 173) sorted by relevance

1234567

/ndk/tests/build/merge-string-literals/
Dbuild.sh24 $NDK/ndk-build -C "$PROGDIR" "$@"
27 $NDK/ndk-build -C "$PROGDIR" "$@" APP_ABI="$APP_ABI"
36 make --no-print-dir -f $NDK/build/core/build-local.mk DUMP_$1 | tail -1
38 make --no-print-dir -f $NDK/build/core/build-local.mk DUMP_$1 APP_ABI="$APP_ABI" | tail -1
/ndk/build/core/
Dbuild-all.mk44 BUILD_HOST_EXECUTABLE := $(BUILD_SYSTEM)/build-host-executable.mk
45 BUILD_HOST_STATIC_LIBRARY := $(BUILD_SYSTEM)/build-host-static-library.mk
46 BUILD_STATIC_LIBRARY := $(BUILD_SYSTEM)/build-static-library.mk
47 BUILD_SHARED_LIBRARY := $(BUILD_SYSTEM)/build-shared-library.mk
48 BUILD_EXECUTABLE := $(BUILD_SYSTEM)/build-executable.mk
87 …$(call __ndk_warning,WARNING: No modules to build, your APP_MODULES definition is probably incorre…
89 $(call __ndk_warning,WARNING: There are no modules to build in this project!)
Dsetup-toolchain.mk159 include $(BUILD_SYSTEM)/default-build-commands.mk
185 …$(call host-echo-build-step,$(PRIVATE_ABI),Gdbserver) "[$(PRIVATE_NAME)] $(call pretty-dir,$(PRIVA…
199 $(call host-echo-build-step,$(PRIVATE_ABI),Gdbsetup) "$(call pretty-dir,$(PRIVATE_DST))"
233 $(eval include $(BUILD_SYSTEM)/build-binary.mk)\
246 …call ndk_log,[$(TARGET_ARCH_ABI)] No installable modules in project - forcing static library build)
252 $(call ndk_log,[$(TARGET_ARCH_ABI)] Modules to build: $(WANTED_MODULES))
/ndk/sources/host-tools/ndk-depends/
DGNUmakefile20 BUILD_DIR := /tmp/ndk-$(USER)/build/build-ndk-depends
45 define build-c-object
52 define build-cxx-object
60 $(eval $(call build-c-object,$(BUILD_DIR)/$(src:%.c=%.o),$(src)))\
64 $(eval $(call build-cxx-object,$(BUILD_DIR)/$(src:%.cc=%.o),$(src)))\
/ndk/sources/host-tools/ndk-stack/
DGNUmakefile20 BUILD_DIR := /tmp/ndk-$(USER)/build/build-ndk-stack
55 define build-c-object
62 define build-cxx-object
70 $(eval $(call build-c-object,$(BUILD_DIR)/$(src:%.c=%.o),$(src)))\
74 $(eval $(call build-cxx-object,$(BUILD_DIR)/$(src:%.cc=%.o),$(src)))\
/ndk/sources/cxx-stl/llvm-libc++/
DREADME.NDK1 This is a copy of LLVM's libc++ project, slightly modified to build
31 $NDK/ndk-build -C android/test
36 $NDK/ndk-build
38 3/ To see build commands, use V=1, as in:
40 $NDK/ndk-build -C android/test V=1
52 Main build file for the library. This builds one static and
59 NDK build project for two test programs that link against the
67 By default, ndk-build tries to build with GCC 4.6, however, experimental
75 $NDK/ndk-build -C android/test
78 $NDK/ndk-build -C android/test NDK_TOOLCHAIN_VERSION=4.8
[all …]
/ndk/tests/build/multi-abi/
DREADME1 This test checks that we can build the same binary for multiple architectures
2 in a single ndk-build invokation, i.e. when using:
6 This failed in NDK r6 due to a bug in the build scripts.
/ndk/tests/build/prebuilt-copy/
Dbuild.sh46 $NDK/ndk-build -C "$PREBUILTS_DIR"
49 $NDK/ndk-build -C "$PREBUILTS_DIR" APP_ABI="$APP_ABI"
60 PREBUILTS_DIR=$PREBUILTS_DIR $NDK/ndk-build -C "$PROGDIR"
63 PREBUILTS_DIR=$PREBUILTS_DIR $NDK/ndk-build -C "$PROGDIR" APP_ABI="$APP_ABI"
DREADME1 This build test checks that:
7 using them in the main project. See build.sh
/ndk/build/
Dndk-build227 . $PROGDIR/build/tools/dev-defaults.sh # for DEFAULT_LLVM_VERSION
250 $GNUMAKE --no-print-dir -f $PROGDIR/core/build-local.mk $FLAGS DUMP_${VAR} | tail -1
258 …$GNUMAKE --no-print-dir -f $PROGDIR/core/build-local.mk $FLAGS DUMP_${VAR} APP_ABI=${ABI} | tail -1
265 perl $LLVM_PATH/tools/scan-build/scan-build \
270 $GNUMAKE -f $PROGDIR/core/build-local.mk "$@" APP_ABI=$ABI
273 $GNUMAKE -f $PROGDIR/core/build-local.mk "$@"
Dndk-build.cmd7 "%PREBUILT_PATH%\bin\make.exe" -f "%NDK_ROOT%\build\core\build-local.mk" SHELL=cmd %*
/ndk/build/tools/
DREADME.md3 itself, i.e. they are not needed when using ndk-build to build
47 build/core
50 Contains the main NDK build system used when `ndk-build`. Relies heavily on GNU
53 build/tools
71 `ndk-build`. See docs/CPLUSPLUS-SUPPORT.html for more details.
82 Contains the sources of a port of STLport that can be used with `ndk-build`. The
83 dev-script `build-cxx-stl.sh` can be used to generate prebuilt libraries from
89 Contains the sources of a port of LLVM's libc++ that can be used with ndk-build.
90 The dev-script `build-cxx-stl.sh` can be used to generate prebuilt libraries
97 dev-script `build-gnu-libstdc++.sh` is used to generate prebuilt libraries from
[all …]
Dbuild-ccache.sh41 BUILD_OUT=$NDK_TMPDIR/build-ccache
106 cd $BUILD_OUT/$CCACHE_VERSION && run make clean && run make unpack && run make build
111 PREBUILT_DIR=$NDK_DIR/build/prebuilt/$HOST_TAG/ccache
/ndk/tests/build/absolute-src-file-paths/
Dbuild.sh6 echo $NDK/ndk-build "$@" FOO_PATH="$CUR_DIR/src"
7 $NDK/ndk-build "$@" FOO_PATH="$CUR_DIR/src"
/ndk/sources/cxx-stl/stlport/
DREADME.original16 build/lib - build directory for STLport library (if you use
18 build/test/unit - build directory for regression (unit) tests
19 build/test/eh - build directory for exception handling tests
/ndk/tests/build/issue17144-byteswap/
Dbuild.sh24 $NDK/ndk-build -B APP_ABI=armeabi-v7a APP_CFLAGS=-save-temps NDK_DEBUG=1
34 $NDK/ndk-build -B APP_ABI=x86 APP_CFLAGS=-save-temps NDK_DEBUG=1
46 $NDK/ndk-build -B APP_ABI=mips APP_CFLAGS="-save-temps -mips32r2" NDK_DEBUG=1
/ndk/sources/host-tools/nawk-20071023/
DGNUmakefile5 BUILD_DIR ?= /tmp/ndk-$(USER)/build-awk
69 define build-c-file
78 $(eval $(call build-c-file,$(src),$(BUILD_DIR)/$(src:%.c=%.o)))\
89 $(eval $(call build-c-file,$(PROCTAB_C),$(PROCTAB_O)))
/ndk/
Dndk-which45 …NDK_PROJECT_PATH=$TMPDIR $GNUMAKE --no-print-dir -f $MYNDKDIR/build/core/build-local.mk DUMP_$1 AP…
DREADME.md19 compiler can use `build/tools/build-mingw64-toolchain.sh` to generate their own
20 and be added to the `PATH` for build scripts to discover.
30 (build system, docs, samples, tests).
39 * `host-tools/` contains build dependencies and additional tools.
47 * The build system sets `--sysroot` to one of these directories based on
55 * `build/` contains the ndk-build system and scripts to rebuild NDK.
113 If you need to re-run just the packaging step without going through a build,
114 packaging is handled by `build/tools/package.py`.
131 tests, you can run just the `build` or `awk` test suites with the `--suite`
/ndk/sources/third_party/googletest/googletest/
DREADME24 Google Test is designed to have fairly minimal requirements to build
36 These are the base requirements to build and use Google Test from a source
56 Also, you'll need CMake 2.6.4 or higher if you want to build the
63 build Google Test and its own tests from an SVN checkout (described
109 To build Google Test and your tests that use it, you need to tell your
110 build system where to find its headers and source files. The exact
111 way to do it depends on which build system you use, and is usually
116 Suppose you put Google Test in directory ${GTEST_DIR}. To build it,
117 create a library build target (or a project as called by Visual Studio
140 use to build Google Test on systems where GNU make is available
[all …]
/ndk/tests/build/libc_no_atexit/
Dbuild.sh6 NDK_BUILDTOOLS_PATH=$NDK/build/tools
7 . $NDK/build/tools/prebuilt-common.sh
/ndk/tests/build/import-install/
Dbuild.sh8 $NDK/ndk-build "$@"
23 NDK_BUILDTOOLS_PATH=$NDK/build/tools
/ndk/sources/host-tools/make-3.81/
DREADME.customs6 In order to utilize this capability, you must first download and build
18 First, build pmake and Customs. You need to build pmake first, because
19 Customs require pmake to build. Unfortunately, this is not trivial;
45 Once you've installed Customs, you can build GNU make to use it. When
52 Run make (or use build.sh) normally to build GNU make as described in
62 One thing you should be aware of is that the default build environment
66 If you don't want to do this, you can build Customs such that root
/ndk/sources/cpufeatures/
DREADME.TXT4 This header is only here to ensure that existing build scripts can still
8 Please modify your build scripts to import the library instead ASAP.
/ndk/tests/build/issue64679-prctl/
Dbuild.sh8 NDK_BUILDTOOLS_PATH=$NDK/build/tools
9 . $NDK/build/tools/prebuilt-common.sh
95 $ANDROID_NDK_ROOT/ndk-build -C "$PROJECT_DIR" -B -j$JOBS V=1 1>/dev/null 2>&1

1234567