rsimd

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

commit dc42451733f81008185a575613438dcb22e8b480
parent 32590b0f3a0dda0897b60b8d4d475713da948196
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu,  2 Oct 2025 12:11:23 +0200

Merge branch 'release_0.6.1'

Diffstat:
MMakefile | 10+++++++---
MREADME.md | 5+++++
Mconfig.mk | 2+-
3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -150,9 +150,13 @@ rsimd-local.pc: rsimd.pc.in install: library pkg install() { mode="$$1"; prefix="$$2"; shift 2; \ - mkdir -p "$${prefix}"; \ - cp "$$@" "$${prefix}"; \ - chmod "$${mode}" "$$@"; \ + printf "%s\n" "$$@" | while read -r i; do \ + f="$${i##src/}"; \ + p="$${prefix}/$$(dirname "$${f}")"; \ + mkdir -p "$${p}"; \ + cp "$${i}" "$${p}"; \ + chmod "$${mode}" "$${p}/$${f##*/}"; \ + done; \ }; \ install 755 "$(DESTDIR)$(LIBPREFIX)" $(LIBNAME); \ install 644 "$(DESTDIR)$(LIBPREFIX)/pkgconfig" rsimd.pc; \ diff --git a/README.md b/README.md @@ -22,6 +22,11 @@ Edit config.mk as needed, then run: ## Release notes +### Version 0.6.1 + +- Fix the installation path for SSE and AVX files: they were not + installed in their subdirectories as they should have been. + ### Version 0.6 - Fix API headers. Do not include headers (even conditionaly) that diff --git a/config.mk b/config.mk @@ -1,4 +1,4 @@ -VERSION = 0.6.0 # Library version +VERSION = 0.6.1 # Library version PREFIX = /usr/local LIB_TYPE = SHARED