Lines Matching +full:test +full:- +full:config
2 ----------------------
9 contributor-agreement.pdf. This is needed so upstreaming code
19 build/ - build directory (created by make).
20 math/ - math subproject sources for generic scalar
27 math/aarch64/ - math subproject AArch64-specific sources
29 math/aarch64/advsimd - AdvSIMD-specific math sources.
30 math/aarch64/experimental - Experimental math sources do not
33 math/aarch64/sve - SVE-specific math sources.
34 math/include/ - math library public headers.
35 math/test/ - math test and benchmark related sources.
36 math/tools/ - tools used for designing the algorithms.
37 networking/ - networking subproject sources.
38 networking/include/ - networking library public headers.
39 networking/test/ - networking test and benchmark related sources.
40 string/ - string routines subproject sources.
45 string/<arch> - <arch>-specific string routines sources for
47 string/aarch64/experimental - Experimental string routines which
49 string/include/ - string library public headers.
50 string/test/ - string test and benchmark related sources.
54 cp config.mk.dist config.mk
55 # edit config.mk if necessary ...
61 ln -s path/to/src/Makefile Makefile
62 cp path/to/src/config.mk.dist config.mk
63 echo 'srcdir = path/to/src' >> config.mk
64 # further edits to config.mk
70 make all-math
71 make check-math
75 SVE routines are always built by default - this means that on AArch64
80 The test system requires libmpfr and libmpc.
83 sudo apt-get install libmpfr-dev libmpc-dev
85 For cross build, CROSS_COMPILE should be set in config.mk and EMULATOR
86 should be set for cross testing (e.g. using qemu-user or remote access
87 to a target machine), see the examples in config.mk.dist.