Lines Matching +full:- +full:dbuild_testing

1-ci.org/google/cpu_features.svg?branch=master)](https://travis-ci.org/google/cpu_features) [![Buil…
3 A cross-platform C library to retrieve CPU features (such as available
8 - [Design Rationale](#rationale)
9 - [Code samples](#codesample)
10 - [Running sample code](#usagesample)
11 - [What's supported](#support)
12 - [Android NDK's drop in replacement](#ndk)
13 - [License](#license)
14 - [Build with cmake](#cmake)
19 - **Simple to use.** See the snippets below for examples.
20 - **Extensible.** Easy to add missing features or architectures.
21 - **Compatible with old compilers** and available on many architectures so it
24 - **Sandbox-compatible.** The library uses a variety of strategies to cope
27 - **Thread safe, no memory allocation, and raises no exceptions.**
30 - **Unit tested.**
75 when using a compiler that is slow to extract individual bits from bit-packed
81 instruction set (e.g., `g++ -mavx`) and sets `has_avx` accordingly.
128 brand : Intel(R) Xeon(R) CPU E5-1650 0 @ 3.20GHz
137 % ./build/list_cpu_features --json
138 {"arch":"x86","brand":" Intel(R) Xeon(R) CPU E5-1650 0 @ 3.20GHz","family":6,"model":45,"step…
145 |---------|:----:|:-------:|:-------:|:------:|:-------:|
155 [getauxval](https://www.gnu.org/software/libc/manual/html_node/Auxiliary-Vector.html)
170 …ment of for the NDK's [cpu-features.h](https://android.googlesource.com/platform/ndk/+/master/sour…
187 - build `list_cpu_features`
189 cmake -B/tmp/cpu_features -H. -GNinja -DCMAKE_BUILD_TYPE=Release
190 ninja -C/tmp/cpu_features
191 /tmp/cpu_features/list_cpu_features --json
194 - run tests
196 cmake -B/tmp/cpu_features -H. -GNinja -DBUILD_TESTING=ON
197 ninja -C/tmp/cpu_features
198 ninja -C/tmp/cpu_features test