From dc375ff1c382ba8bfb5da66d97088d9e9eabd675 Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 31 May 2017 12:16:49 -0700 Subject: [PATCH] Added setup scripts to quickly set current local repo as OPENRAM_HOME and OPENRAM_TECH --- setpaths.csh | 8 ++++++++ setpaths.sh | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100755 setpaths.csh create mode 100755 setpaths.sh diff --git a/setpaths.csh b/setpaths.csh new file mode 100755 index 00000000..69f736d4 --- /dev/null +++ b/setpaths.csh @@ -0,0 +1,8 @@ +#!/bin/csh +# This is a csh utility script to set the paths to the current +# directory of OpenRAM. It must be sourced in the local directory +# like this: +# source setpaths.csh + +setenv OPENRAM_HOME "`pwd`/compiler" +setenv OPENRAM_TECH "`pwd`/technology" diff --git a/setpaths.sh b/setpaths.sh new file mode 100755 index 00000000..44485f14 --- /dev/null +++ b/setpaths.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# This is a bash utility script to set the paths to the current +# directory of OpenRAM. It must be sourced in the local directory +# like this: +# source setpaths.sh + +export OPENRAM_HOME="`pwd`/compiler" +export OPENRAM_TECH="`pwd`/technology"