commit b461a80e0521b0b597d97e594bb40c15e860e694
parent 9f82473933486a01d0fd3a70fdc17dc36e7c7d40
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 10 Oct 2023 16:47:47 +0200
Fix the atrstm build script
Due to a test error, the optional rsimd dependency was not handled
correctly, resulting in a compilation error.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/atrstm.sh b/src/atrstm.sh
@@ -34,7 +34,7 @@ tag="origin/feature_posix_make"
dep="atrri atrtp rsys star-mesh star-uvm star-vx"
opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)"
-if [ "${USE_SIMD}" = "0" ]; then
+if [ "${USE_SIMD}" != "0" ]; then
dep="${dep} rsimd"
fi