star-build

Automation tool for project installation
git clone git://git.meso-star.fr/star-build.git
Log | Files | Refs | README | LICENSE

commit 6cfd341c3e8ebe4c60ca90304e09d07d1c210a5a
parent ee569c0117239a0142d204c6dc8bd94fe05394c3
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri,  1 Sep 2023 14:19:47 +0200

Add the build script of the atrstm library

Diffstat:
Asrc/atrstm.sh | 41+++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+), 0 deletions(-)

diff --git a/src/atrstm.sh b/src/atrstm.sh @@ -0,0 +1,41 @@ +#!/bin/sh -e + +# Copyright (C) 2023 |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/>. + +[ -n "${ATRSTM_SH}" ] && return +export ATRSTM_SH=1 + +[ "${USE_SIMD}" != 0 ] && . "rsimd.sh" + +. "build.sh" +. "atrri.sh" +. "atrtp.sh" +. "rsys.sh" +. "star-mesh.sh" +. "star-uvm.sh" +. "star-vx.sh" + +name="atrstm" +url="$\(REPO\)/atrstm.git" +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 + dep="${dep} rsimd" +fi + +git_repo