Home
last modified time | relevance | path

Searched refs:LIB (Results 1 – 20 of 20) sorted by relevance

/ndk/tests/build/thin-archives/
Dbuild.sh43 for LIB in $LIBFOO_LIST; do
44 LIB_TYPE=$(get_file_type "$LIB")
46 echo "OK: $LIB is a thin archive ('$LIB_TYPE')."
48 echo "ERROR: $LIB is not a thin archive: '$LIB_TYPE'"
55 for LIB in $LIBBAR_LIST; do
56 LIB_TYPE=$(get_file_type "$LIB")
58 echo "ERROR: $LIB is not a regular archive: '$LIB_TYPE'"
61 echo "OK: $LIB is a regular archive: '$LIB_TYPE'"
/ndk/tests/build/libc_no_atexit/
Dbuild.sh12 LIB=$(cd $NDK && find platforms -name "libc.so" | sed -e 's!^!'$NDK'/!' | grep arch-$ARCH)
13 LIBRARIES=$LIBRARIES" $LIB"
18 for LIB in $LIBRARIES; do
20 echo "Checking: $LIB"
21 readelf -s $LIB | grep -q -F " atexit"
23 echo "ERROR: $NDK/$LIB exposes 'atexit'!" >&2
26 readelf -s $LIB | grep -q -F " __dso_handle"
28 echo "ERROR: $NDK/$LIB exposes '__dso_handle'!" >&2
/ndk/build/tools/
Dgen-system-symbols.sh149 local LIB=$1
156 case $LIB in
195 for LIB in $(cd $SRCDIR && ls lib*.so); do
196 SRCLIB=$SRCDIR/$LIB
197 log "Extracting symbols from $LIB"
201 FUNCS=$(filter_library_symbols $LIB $FUNCS)
202 VARS=$(filter_library_symbols $LIB $VARS)
207 (echo "$FUNCS" | tr ' ' '\n') > $DSTDIR/$LIB.functions.txt
208 (echo "$VARS" | tr ' ' '\n') > $DSTDIR/$LIB.variables.txt
Dbuilder-funcs.sh222 case $LIB in
224 _builder_varadd _BUILD_STATIC_LIBRARIES $LIB
227 _builder_varadd _BUILD_SHARED_LIBRARIES $LIB
230 echo "ERROR: Unknown link library extension: $LIB"
Dbuild-compiler-rt.sh278 for LIB in libcompiler_rt_static.a libcompiler_rt_shared.so; do
279 FILES="$FILES $COMPILER_RT_SUBDIR/libs/$ABI/$LIB"
Dgen-platforms.sh492 for LIB in $LIBS; do
493 funcs=$(cat "$SYMDIR/$LIB.functions.txt" 2>/dev/null)
494 vars=$(cat "$SYMDIR/$LIB.variables.txt" 2>/dev/null)
496 funcs=$(remove_unwanted_function_symbols $ARCH $LIB $funcs)
498 vars=$(remove_unwanted_variable_symbols $ARCH $LIB $vars)
501 log "Generating $ARCH shared library for $LIB ($numfuncs functions + $numvars variables)"
503 gen_shared_lib $LIB "$funcs" "$vars" "$DSTDIR/$LIB" "$CC"
Dbuild-cxx-stl.sh682 for LIB in ${CXX_STL_LIB}_static.a ${CXX_STL_LIB}_shared${LIB_SUFFIX}; do
684 FILES="$FILES $CXX_STL_SUBDIR/libs/$ABI/thumb/$LIB"
686 FILES="$FILES $CXX_STL_SUBDIR/libs/$ABI/$LIB"
Dbuild-gnu-libstdc++.sh470 for LIB in include/bits $MULTILIB libsupc++.a libgnustl_static.a libgnustl_shared.so; do
471 FILES="$FILES $GNUSTL_SUBDIR/$VERSION/libs/$ABI/$LIB"
472 THUMB_FILE="$GNUSTL_SUBDIR/$VERSION/libs/$ABI/thumb/$LIB"
Dbuild-host-gcc.sh1548 run cp -f "$TOOLCHAIN_LICENSES"/COPYING "$TOOLCHAIN_LICENSES"/COPYING.LIB "$INSTALL_DIR"
/ndk/sources/host-tools/make-3.81/config/
Dlib-link.m413 dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and
24 ac_cv_lib[]Name[]_libs="$LIB[]NAME"
28 LIB[]NAME="$ac_cv_lib[]Name[]_libs"
32 AC_SUBST([LIB]NAME)
45 dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and
48 dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty.
57 dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME
69 LIBS="$LIBS $LIB[]NAME"
77 AC_MSG_RESULT([$LIB[]NAME])
80 dnl If $LIB[]NAME didn't lead to a usable library, we don't need
[all …]
/ndk/sources/host-tools/make-3.81/
Dmake.lnk1 FROM LIB:cres.o "commands.o"+"job.o"+"dir.o"+"file.o"+"misc.o"+"main.o"+"read.o"+"remake.o"+"rule.o…
3 LIB glob/glob.lib LIB:sc.lib LIB:amiga.lib
Dvmsjobs.c219 static int ctrlMask= LIB$M_CLI_CTRLY;
DNEWS537 opposite order from previous versions: the whole target name `LIB(MEM)'
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/
Dtestit_android183 for LIB in libc++_static.a libc++_shared.so; do
184 if [ ! -f "$LIBCXX_LIBS/$LIB" ]; then
185 echo "ERROR: Missing prebuilt library: $LIBCXX_LIBS/$LIB"
198 for LIB in libcompiler_rt_static.a libcompiler_rt_shared.so; do
199 if [ ! -f "$LIBCOMPILER_RT_LIBS/$LIB" ]; then
200 echo "ERROR: Missing prebuilt library: $LIBCOMPILER_RT_LIBS/$LIB"
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
Dtestit_android179 for LIB in libc++_static.a libc++_shared.so; do
180 if [ ! -f "$LIBCXX_LIBS/$LIB" ]; then
181 echo "ERROR: Missing prebuilt library: $LIBCXX_LIBS/$LIB"
189 for LIB in libcompiler_rt_static.a libcompiler_rt_shared.so; do
190 if [ ! -f "$LIBCOMPILER_RT_LIBS/$LIB" ]; then
191 echo "ERROR: Missing prebuilt library: $LIBCOMPILER_RT_LIBS/$LIB"
/ndk/sources/host-tools/make-3.81/glob/
DMakefile.am28 EXTRA_DIST = COPYING.LIB Makefile.ami SCOPTIONS SMakefile \
DMakefile.in57 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in COPYING.LIB \
205 EXTRA_DIST = COPYING.LIB Makefile.ami SCOPTIONS SMakefile \
/ndk/sources/host-tools/make-3.81/w32/subproc/
DNMakefile23 LIB = lib
51 $(LIB) -out:$@ @<<
/ndk/sources/host-tools/make-3.81/autom4te.cache/
Dtraces.0813 m4trace:configure.in:168: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS getloadavg.$ac_objext"])
814 m4trace:configure.in:168: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
815 m4trace:configure.in:168: -1- m4_pattern_allow([^LIB@&t@OBJS$])
1029 m4trace:configure.in:449: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
1030 m4trace:configure.in:449: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
1031 m4trace:configure.in:449: -1- m4_pattern_allow([^LIB@&t@OBJS$])
Doutput.0547 LIB@&t@OBJS=
612 LIB@&t@OBJS
5101 eval value=\"\$LIB$uppername\"
5659 eval value=\"\$LIB$uppername\"
8120 case " $LIB@&t@OBJS " in
8122 *) LIB@&t@OBJS="$LIB@&t@OBJS getloadavg.$ac_objext"
9405 for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue
9414 LIB@&t@OBJS=$ac_libobjs