Lines Matching +full:- +full:- +full:without +full:- +full:host +full:- +full:scanner

4 -------------------
7 2. In order to compile and use ltp-scanner (a utility in the pan directory),
11 - http://ftp.gnu.org/gnu/bison/bison-2.4.1.tar.gz
14 - ftp://invisible-island.net/byacc/byacc.tar.gz
17 - http://downloads.sourceforge.net/project/flex/flex/flex-2.5.33/flex-2.5.33.tar.bz2
20 - http://ftp.gnu.org/gnu/make/make-3.81.tar.bz2
22 If you want to use auto configuration, be sure autoconf-2.61+ & automake-1.10+
25 automake-1.10.2's sources can be downloaded from:
26 - ftp://ftp.gnu.org/gnu/automake/automake-1.10.2.tar.bz2
27 - ftp://ftp.gnu.org/gnu/automake/automake-1.10.2.tar.gz
29 autoconf-2.61's sources can be downloaded from:
30 - ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.61.tar.bz2
31 - ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.61.tar.gz
33 autoconf-2.61 also requires m4-1.4.7+ be installed. Its sources can be
35 - http://ftp.gnu.org/gnu/m4/m4-1.4.7.tar.bz2
36 - http://ftp.gnu.org/gnu/m4/m4-1.4.7.tar.gz
39 -------------------
43 $ test -d "$TOP_BUILDDIR" || mkdir -p "$TOP_BUILDDIR"
49 $ test -d "$TOP_BUILDDIR" || mkdir -p "$TOP_BUILDDIR"
62 - $TOP_SRCDIR and $TOP_BUILDDIR are the same for in-build-tree scenarios.
63 - $TOP_SRCDIR and $TOP_BUILDDIR differ for out-of-build-tree scenarios.
65 See the In-build-tree and Out-of-build-tree sections below for more details on
69 -------------------
72 -------------------
80 errors resulting from non-sane pathnames, because it would introduce unneeded
81 complexity into the build system and would require non-trivial effort to fix
82 and validate the third-party packages, and thus wouldn't be a sustainable
89 In-build-tree
90 -------------------
91 In-build-tree support is when you build binaries (applications, binary objects)
100 - Specifying DESTDIR is optional, but required when installing to a non-host
101 sysroot, as opposed to the host system's sysroot.
102 - Specify SKIP_IDCHECK=1 if and when you don't want to modify /etc/{group,passwd}
114 Out-of-build-tree
115 -------------------
116 Out-of-build-tree support is when you build binaries (applications, binary
118 reside. This is typically used when cross-compiling for multiple targets.
126 -C "$OUT_OF_BUILD_TREE_DIR" \
127 -f "$TOP_SRCDIR/Makefile" \
131 -C "$OUT_OF_BUILD_TREE_DIR" \
132 -f "$TOP_SRCDIR/Makefile" \
139 - Specifying DESTDIR is optional, but required when installing to a non-host
140 sysroot, as opposed to the host system's sysroot.
141 - Specify SKIP_IDCHECK=1 if and when you don't want to modify /etc/{group,passwd}
145 -----------
147 1> tar xzf ltp-XXXXXXXX.tar.gz
155 - LTP assumes the existence of the nobody, bin, and daemon users and their
159 - The installation directory is /opt/ltp by default. Please see
160 "Using autoconf" above and specify the appropriate path via --prefix.
165 ---------------------
185 for these tests to successfully operate a writable high-density 3.5" floppy
186 must be in the disk drive and a CD-ROM with more than 100Mb of data must be
187 in the CD-ROM drive. The corresponding tests will fail if either disk is
203 machine in this file to allow root to remotely connect without the use
232 You can run the test category which you are interested in, -h option shows
234 # ./network.sh -h
239 ---------------
246 command-line when running make.
249 --------------
250 Specify UCLINUX=1 when calling make; -DUCLINUX=1 use is deprecated and highly
254 -------------
261 ----------------------
265 CFLAGS - used when compiling/linking C code, e.g. -D_GNU_SOURCE (no CPPFLAGS!)
267 CXXFLAGS - used when compiling/linking C++ code (no CPPFLAGS!)
269 CPPFLAGS - used when preprocessor is run (so C/C++ compiling with $(CPP)
270 functions, e.g. -I$SYSROOT/usr/include -I$SYSROOT/include -I$SYSROOT
272 LDFLAGS - linker flags, e.g. "-L$SYSROOT/usr/lib" "-L$SYSROOT/lib". DO NOT
275 LDLIBS - libraries listed after objects during link, e.g. -lc, -lpthread,
276 -lltp.
278 See README.mk-devel for a more terse description of what's available.
281 ----------------------
285 checking for a BSD-compatible install... /usr/bin/install -c
295 " *** No rule to make target `/$*', needed by `pan-all'. Stop."
302 install -m 00644 "/scratch/ltp-dev2/ltp/include/test.h" "/scratch/ltp-install12/include/test.h"
303 …install -m 00644 "/scratch/ltp-dev2/ltp/include/tlibio.h" "/scratch/ltp-install12/include/tlibio.h"
304 …install -m 00644 "/scratch/ltp-dev2/ltp/include/usctest.h" "/scratch/ltp-install12/include/usctest…
305 …install -m 00644 "/scratch/ltp-dev2/ltp/include/write_log.h" "/scratch/ltp-install12/include/write…
306 make[1]: Leaving directory `/scratch/ltp-dev2/ltp/include'
307 make -C lib -f "/scratch/ltp-dev2/ltp/lib/Makefile" all
308 make[1]: Entering directory `/scratch/ltp-dev2/ltp/lib'
309 " *** No rule to make target `dataascii.o', needed by `libltp.a'. Stop." # <-- the error
311 Solution: You cannot build LTP with -r / --no-builtin-rules and/or
312 -R / --no-builtin-variables specified. LTP relies heavily on built-in
318 make -C testcases/realtime autotools