OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DSTDIR
(Results
1 - 19
of
19
) sorted by null
/sdk/emulator/opengl/
gen-encoder.sh
15
DSTDIR
="development/tools/emulator/opengl/system"
16
if [ ! -d "$SRCDIR" -o ! -d "$
DSTDIR
" ]; then
33
local dst="$
DSTDIR
/$1_enc"
/ndk/build/tools/
dev-platform-expand-all.sh
30
DSTDIR
=/tmp/ndk-$USER/platforms
31
register_var_option "--dst-dir=<path>"
DSTDIR
"Destination directory"
54
log "Using destination directory: $
DSTDIR
"
59
$PROGDIR/dev-platform-expand.sh --platform=$PLATFORM --src-dir=$SRCDIR --dst-dir=$
DSTDIR
--arch=$(spaces_to_commas $ARCHS)
63
log "Done! See $
DSTDIR
"
dev-platform-expand.sh
62
DSTDIR
=/tmp/ndk-$USER/platforms
63
register_var_option "--dst-dir=<path>"
DSTDIR
"Destination directory"
116
if [ ! -d "$
DSTDIR
" ]; then
117
mkdir -p "$
DSTDIR
"
119
echo "ERROR: Could not create destination directory: $
DSTDIR
"
123
log "Using destination directory: $
DSTDIR
"
205
DDIR="$
DSTDIR
/android-$PLATFORM"
build-libportable.sh
126
local
DSTDIR
="$3"
132
if [ -z "$
DSTDIR
" ]; then
133
DSTDIR
=$NDK_DIR/$LIBPORTABLE_SUBDIR/libs/$ABI
136
mkdir -p "$
DSTDIR
"
140
builder_set_dstdir "$
DSTDIR
"
155
log "Building $
DSTDIR
/libportable.a"
164
nm -a $
DSTDIR
/libportable.a | grep __wrap_ | awk '{print $3}' | sed '/^$/d' | \
166
awk '{printf "--wrap=%s\n",$1}' > "$
DSTDIR
/libportable.wrap"
package-release.sh
311
copy_directory "$SUBDIR" "$
DSTDIR
/$2"
431
DSTDIR
=$TMPDIR/$RELEASE_PREFIX
432
DSTDIR64=${
DSTDIR
}
440
rm -rf "$
DSTDIR
" "$DSTDIR64" &&
441
mkdir -p "$
DSTDIR
" "$DSTDIR64" &&
442
copy_directory "$REFERENCE" "$
DSTDIR
"
446
cd $UNZIP_DIR/android-ndk-* && cp -rP toolchains/* $
DSTDIR
/toolchains/
449
if [ -d "$
DSTDIR
/$GABIXX_SUBDIR" ]; then
458
if [ -d "$
DSTDIR
/$STLPORT_SUBDIR" ] ; then
468
if [ -d "$
DSTDIR
/$LIBCXX_SUBDIR" ]; the
[
all
...]
build-host-toolbox.sh
95
DSTDIR
=$NDK_DIR/$SUBDIR
96
mkdir -p "$
DSTDIR
"
97
fail_panic "Could not create destination directory: $
DSTDIR
"
103
builder_set_dstdir "$
DSTDIR
"
112
builder_set_dstdir "$
DSTDIR
"
gen-system-symbols.sh
57
DSTDIR
=$2
64
if [ -z "$
DSTDIR
" ]; then
74
mkdir -p $
DSTDIR
75
fail_panic "Could not create destination directory: $
DSTDIR
"
204
(echo "$FUNCS" | tr ' ' '\n') > $
DSTDIR
/$LIB.functions.txt
205
(echo "$VARS" | tr ' ' '\n') > $
DSTDIR
/$LIB.variables.txt
build-compiler-rt.sh
197
local
DSTDIR
="$4"
202
if [ -z "$
DSTDIR
" ]; then
203
DSTDIR
=$NDK_DIR/$COMPILER_RT_SUBDIR/libs/$ABI
206
mkdir -p "$
DSTDIR
"
210
builder_set_dstdir "$
DSTDIR
"
222
log "Building $
DSTDIR
/libcompiler_rt_static.a"
225
log "Building $
DSTDIR
/libcompiler_rt_shared.so"
dev-platform-compress.sh
51
DSTDIR
=/tmp/ndk-$USER/platforms-compressed
52
register_var_option "--dst-dir=<path>"
DSTDIR
"Specify destination directory"
74
DDIR=$
DSTDIR
/android-$PLATFORM
gen-platforms.sh
55
DSTDIR
="$ANDROID_NDK_ROOT"
140
echo " --dst-dir=<path> Destination directory [$
DSTDIR
]"
185
DSTDIR
="$OPTION_DSTDIR"
187
log "Using destination directory: $
DSTDIR
"
265
# $2: destination directory (relative to $
DSTDIR
)
270
local DDIR="$
DSTDIR
/$2"
288
mkdir -p "$
DSTDIR
/$2"
290
files=$(cd $
DSTDIR
/$1 && ls -1p)
294
ln -s $rev/$1/$file $
DSTDIR
/$2/$file
305
# $2: destination directory (relative to $
DSTDIR
)
[
all
...]
ndk-common.sh
830
local
DSTDIR
="$2"
836
log " to $
DSTDIR
"
837
mkdir -p "$
DSTDIR
" && (cd "$SRCDIR" && 2>/dev/null tar cf - *) | (tar xf - -C "$
DSTDIR
")
838
fail_panic "Cannot copy to directory: $
DSTDIR
"
846
local
DSTDIR
="$2"
852
log " to $
DSTDIR
"
853
mkdir -p "$
DSTDIR
" && (cd "$SRCDIR" && tar chf - *) | (tar xf - -C "$
DSTDIR
")
854
fail_panic "Cannot copy to directory: $
DSTDIR
"
[
all
...]
build-cxx-stl.sh
398
local
DSTDIR
="$4"
404
DSTDIR
=$
DSTDIR
/$CXX_STL_SUBDIR/libs/$ABI
412
mkdir -p "$
DSTDIR
"
416
builder_set_dstdir "$
DSTDIR
"
447
log "Building $
DSTDIR
/${CXX_STL_LIB}_static.a"
450
log "Building $
DSTDIR
/${CXX_STL_LIB}_shared.so"
build-host-gdb.sh
230
local
DSTDIR
="$NDK_DIR/$(gdb_ndk_install_dir $1 $2 $3)"
238
run copy_directory "$SRCDIR/bin" "$
DSTDIR
/bin"
240
run copy_directory "$SRCDIR/share/gdb" "$
DSTDIR
/share/gdb"
258
# ${
DSTDIR
}/bin/$(bh_tag_to_config_triplet $2)-gdb.exe (2) because
265
--gdb-executable-path=${
DSTDIR
}/bin/$(bh_tag_to_config_triplet $2)-gdb.exe \
build-host-python.sh
400
local
DSTDIR
="$NDK_DIR/$(python_ndk_install_dir $1 $2)"
406
run copy_directory "$SRCDIR/bin" "$
DSTDIR
/bin"
407
run copy_directory "$SRCDIR/lib" "$
DSTDIR
/lib"
408
run copy_directory "$SRCDIR/share" "$
DSTDIR
/share"
409
run copy_directory "$SRCDIR/include" "$
DSTDIR
/include"
build-gnu-libstdc++.sh
111
local
DSTDIR
=$NDK_DIR/$GNUSTL_SUBDIR/$GCC_VERSION/libs/$ABI/$THUMB
120
mkdir -p $
DSTDIR
/ndk/tests/
run-tests.sh
676
local
DSTDIR
="$4/ndk-tests"
712
adb_shell_mkdir "$DEVICE" $
DSTDIR
717
run $ADB_CMD -s "$DEVICE" push "$SRCFILE" "$
DSTDIR
" &&
718
run $ADB_CMD -s "$DEVICE" shell chmod 0755 "$
DSTDIR
/libgabi++_shared.so"
735
DSTFILE="$
DSTDIR
/$DSTFILE"
763
DSTFILE="$
DSTDIR
/$DSTFILE"
772
adb_var_shell_cmd "$DEVICE" "" "cd $
DSTDIR
&& LD_LIBRARY_PATH=$
DSTDIR
./$PROGRAM"
778
adb_var_shell_cmd "$DEVICE" "" rm -r $
DSTDIR
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/
build-hardy-toolchain.sh
560
local
DSTDIR
="$2"
564
log2 "Directory copy: $SRCDIR -> $
DSTDIR
"
565
mkdir -p "$
DSTDIR
" && (cd "$SRCDIR" && tar cf - *) | (tar xf - -C "$
DSTDIR
")
566
fail_panic "Cannot copy to directory: $
DSTDIR
"
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/
build-hardy-toolchain.sh
560
local
DSTDIR
="$2"
564
log2 "Directory copy: $SRCDIR -> $
DSTDIR
"
565
mkdir -p "$
DSTDIR
" && (cd "$SRCDIR" && tar cf - *) | (tar xf - -C "$
DSTDIR
")
566
fail_panic "Cannot copy to directory: $
DSTDIR
"
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh
483
local
DSTDIR
="$2"
487
mkdir -p "$
DSTDIR
" && (cd "$SRCDIR" && tar cf - *) | (tar xf - -C "$
DSTDIR
")
488
fail_panic "Cannot copy to directory: $
DSTDIR
"
[
all
...]
Completed in 584 milliseconds