Skip to content

Commit

Permalink
Add a simple non-iis env file
Browse files Browse the repository at this point in the history
  • Loading branch information
LuigiGhionda committed Jan 26, 2025
1 parent a1f6d7f commit caed2c0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions env/env-non-iis.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2022 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
#

# Set environment variables to choose of which island we have to compile the sw
export PULPD_PRESENT=1
export SAFED_PRESENT=0
export SECURED_PRESENT=1
export SPATZD_PRESENT=0

if [ -z "${BENDER}" ]; then
echo "Environment variable 'BENDER' is not set."
fi

if ! which "riscv64-unknown-elf-gcc" >/dev/null 2>&1; then
echo "RISCV toolchain is NOT in the PATH."
fi

0 comments on commit caed2c0

Please sign in to comment.