Skip to content
Snippets Groups Projects
Commit a2e6e07e authored by dwf1m12's avatar dwf1m12
Browse files

Merge branch 'main' of git.soton.ac.uk:soclabs/nanosoc

parents d97fa5ef 7f71e3e1
No related branches found
No related tags found
No related merge requests found
#-----------------------------------------------------------------------------
# SoC Labs Environment Setup Script
# A joint work commissioned on behalf of SoC Labs, under Arm Academic Access license.
#
# Contributors
#
# David Mapstone (d.a.mapstone@soton.ac.uk)
#
# Copyright 2023, SoC Labs (www.soclabs.org)
#-----------------------------------------------------------------------------
#!/bin/bash
# Get Root Location of Repository
if [ -z $DESIGN_ROOT ]; then
# If $DESIGN_ROOT hasn't been set yet
DESIGN_ROOT=`git rev-parse --show-superproject-working-tree`
if [ -z $DESIGN_ROOT ]; then
# If not in a submodule
DESIGN_ROOT=`git rev-parse --show-toplevel`
fi
fi
# Set Environment Variable for this Repository
export NANOSOC_DIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
# If this Repo is root of workspace
if [ $NANOSOC_DIR = $DESIGN_ROOT ]; then
echo "Design Workspace: $NANOSOC_DIR"
export DESIGN_ROOT
fi
# Source environment variables for all submodules
for d in $NANOSOC_DIR/* ; do
if [ -f "$d/.git" ]; then
if [ -f "$d/set_env.sh" ]; then
# If .git file exists - submodule
source $d/set_env.sh
fi
fi
done
# Add Flow directory to Path
export PATH="$PATH:/$NANOSOC_DIR/flow"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment