rsimd

Make SIMD instruction sets easier to use
git clone git://git.meso-star.fr/rsimd.git
Log | Files | Refs | README | LICENSE

commit 2bac913df855624cf4776720cc7f73b0fd7a7002
parent 07c2537259b823fc0831a9aa296c3cc8d03b7f1c
Author: vaplv <vaplv@free.fr>
Date:   Tue, 13 May 2025 16:10:07 +0200

Merge branch 'release_0.6' into develop

Diffstat:
MREADME.md | 12++++++++++++
Mconfig.mk | 2+-
2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -22,6 +22,18 @@ Edit config.mk as needed, then run: ## Release notes +### Version 0.6 + +- Fix API headers. Do not include headers (even conditionaly) that + depend on SIMD instructions disabled when compiling the library. The + client application could activate compilation options that enabled + their inclusion, while they were not installed. +- Improves the construction system. Simplifies it by doing everything in + one place (the Makefile). Provides additional macros to control + installation subdirectories. Do not detect SIMD instructions to be + activated at the time of compilation: let them be explicitly defined + by the configuration file. + ### Version 0.5 - Replace CMake by Makefile as build system. diff --git a/config.mk b/config.mk @@ -1,4 +1,4 @@ -VERSION = 0.5.0 # Library version +VERSION = 0.6.0 # Library version PREFIX = /usr/local LIB_TYPE = SHARED