commit dcd06e8359baffc3e36bdc39f5591fda559b242f
parent 246c38c293b61f1b20b971b52b6dc6fc072cd63a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 2 Oct 2025 12:20:02 +0200
Replace RSIMD 0.6 by RSIMD 0.6.1
Version 0.6 did not install the header files in the correct location,
which caused compilation errors.
Diffstat:
6 files changed, 41 insertions(+), 41 deletions(-)
diff --git a/src/dev-libs/star-engine_0.16.sh b/src/dev-libs/star-engine_0.16.sh
@@ -48,7 +48,7 @@ export STAR_ENGINE_SH="${version}"
# shellcheck disable=SC2310
if use_simd; then
- . "sci-libs/rsimd_0.6.sh"
+ . "sci-libs/rsimd_0.6.1.sh"
fi
profile profile
diff --git a/src/rad-libs/atrstm_0.1.1.sh b/src/rad-libs/atrstm_0.1.1.sh
@@ -28,7 +28,7 @@ set -e
# shellcheck disable=SC2310
if use_simd; then
- . "sci-libs/rsimd_0.6.sh"
+ . "sci-libs/rsimd_0.6.1.sh"
fi
name="atrstm"
diff --git a/src/rad-libs/star-sf_0.10.sh b/src/rad-libs/star-sf_0.10.sh
@@ -23,7 +23,7 @@ set -e
# shellcheck disable=SC2310
if use_simd; then
- . "sci-libs/rsimd_0.6.sh"
+ . "sci-libs/rsimd_0.6.1.sh"
fi
name="star-sf"
diff --git a/src/rad-libs/star-sf_0.9.sh b/src/rad-libs/star-sf_0.9.sh
@@ -23,7 +23,7 @@ set -e
# shellcheck disable=SC2310
if use_simd; then
- . "sci-libs/rsimd_0.6.sh"
+ . "sci-libs/rsimd_0.6.1.sh"
fi
name="star-sf"
diff --git a/src/sci-libs/rsimd_0.6.1.sh b/src/sci-libs/rsimd_0.6.1.sh
@@ -0,0 +1,37 @@
+#!/bin/sh
+
+# Copyright (C) 2023-2025 |Méso|Star> (contact@meso-star.com)
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+set -e
+
+. "misc/build.sh"
+
+. "sci-libs/sleef_3.5.2-r0.sh"
+. "sys-libs/rsys_0.15.sh"
+
+name="rsimd"
+tag="0.6.1"
+
+if [ -n "${RSIMD_SH}" ]; then
+ check_conflict "${name}" "${tag}" "${RSIMD_SH}"
+else
+ export RSIMD_SH="${tag}"
+
+ url="$\(REPO_VAPLV\)/rsimd.git"
+ dep="rsys sleef"
+ opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)"
+ git_repo
+fi
diff --git a/src/sci-libs/rsimd_0.6.sh b/src/sci-libs/rsimd_0.6.sh
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-# Copyright (C) 2023-2025 |Méso|Star> (contact@meso-star.com)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-set -e
-
-. "misc/build.sh"
-
-. "sci-libs/sleef_3.5.2-r0.sh"
-. "sys-libs/rsys_0.15.sh"
-
-name="rsimd"
-tag="0.6"
-
-if [ -n "${RSIMD_SH}" ]; then
- check_conflict "${name}" "${tag}" "${RSIMD_SH}"
-else
- export RSIMD_SH="${tag}"
-
- url="$\(REPO_VAPLV\)/rsimd.git"
- dep="rsys sleef"
- opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)"
- git_repo
-fi