cpu-features 0.6.0-3 source package in Ubuntu

Changelog

cpu-features (0.6.0-3) unstable; urgency=medium

  * Add Multi-Arch hint
  * Add Breaks and Replaces to libvolk2-dev (Closes: #978097)
  * Add powerpc to Architecture
  * Add x32 to Architecture
  * Expose internal headers.
    One internal header is used in ppc public header

 -- Shengjing Zhu <email address hidden>  Tue, 29 Dec 2020 02:11:14 +0800

Upload details

Uploaded by:
Shengjing Zhu
Uploaded to:
Sid
Original maintainer:
Shengjing Zhu
Architectures:
amd64 arm64 armel armhf i386 mips64el mipsel powerpc ppc64 ppc64el x32
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Downloads

File Size SHA-256 Checksum
cpu-features_0.6.0-3.dsc 1.4 KiB 514f5486fa4f8ca0eeaefdd510d2df0270788b15c801439d768f0886cf1d2aaf
cpu-features_0.6.0.orig.tar.gz 61.8 KiB 320fec96f870696b0cf731bff12c32c563079b220db339bf29b03e74c2e48296
cpu-features_0.6.0-3.debian.tar.xz 3.5 KiB 7e53ddf752558d24274296db65b2fc2aa1ae5012320b40a0ed14aa280aef26b5

Available diffs

No changes file available.

Binary packages built by this source

libcpu-features-dev: cross platform C99 library to get cpu features

 Cross-platform C library to retrieve CPU features(such as available
 instructions) at runtime.
 .
 Design rationale:
 .
  * Simple to use.
  * Extensible. Easy to add missing features or architectures.
  * Compatible with old compilers and available on many architectures so it
    can be used widely. It's implemented it in C99.
  * Sandbox-compatible. The library uses a variety of strategies to cope with
    sandboxed environments or when cpuid is unavailable.
  * Thread safe, no memory allocation, and raises no exceptions. cpu_features
    is suitable for implementing fundamental libc functions like malloc,
    memcpy, and memcmp.
  * Unit tested.