cpu-features 0.9.0-1 source package in Ubuntu

Changelog

cpu-features (0.9.0-1) unstable; urgency=medium

  * New upstream version
  * Update Standards-Version to 4.6.2 (no changes)
  * Update architecture
    + Drop mipsel, removed from Debian
    + Add loong64 riscv64 s390x
  * Build with -DBUILD_EXECUTABLE=OFF

 -- Shengjing Zhu <email address hidden>  Mon, 06 Nov 2023 22:39:12 +0800

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Downloads

File Size SHA-256 Checksum
cpu-features_0.9.0-1.dsc 1.4 KiB 1dabc7986c1b334a3b0ec84156adc4839bb1e483393f5c9b972d11ab6ad96be6
cpu-features_0.9.0.orig.tar.gz 106.7 KiB 667939e7b21d38a5ed368421949ee8cc3f8c2b570db0ff9a85c6c9f699bac92a
cpu-features_0.9.0-1.debian.tar.xz 3.3 KiB dd058c77557c4b961fc27188f4886f9010a10cd7a9c6b149a78ebba53f6db41d

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.