From 529c1acd097648bb64a349cd68503bf45b04abb8 Mon Sep 17 00:00:00 2001 From: Thomas Walker Lynch Date: Mon, 13 Oct 2025 04:27:12 +0000 Subject: [PATCH] fix gcc path --- env_developer | 7 +++++++ tool_shared/bespoke/env | 3 +++ 2 files changed, 10 insertions(+) diff --git a/env_developer b/env_developer index 24f92fe..b2dcb01 100644 --- a/env_developer +++ b/env_developer @@ -8,10 +8,17 @@ fi export ROLE=developer source tool_shared/bespoke/env +PYTHON_HOME = tool_shared/third_party/python if [[ ":$PATH:" != *":$PYTHON_HOME/bin:"* ]]; then export PATH="$PYTHON_HOME/bin:$PATH" fi +GCC_HOME = tool_shared/third_party/RT_gcc/release +if [[ ":$PATH:" != *":$GCC_HOME:"* ]]; then + export PATH="$GCC_HOME/bin:$PATH" +fi +alias gcc amd64_Deb-12.10_gcc-12.4.1 + cd $ROLE export ENV=$ROLE echo "in environmennt: $ENV" diff --git a/tool_shared/bespoke/env b/tool_shared/bespoke/env index eb93ff3..0d47fca 100644 --- a/tool_shared/bespoke/env +++ b/tool_shared/bespoke/env @@ -8,6 +8,9 @@ fi # without this bash takes non-matching globs literally shopt -s nullglob +# does not presume sharing or world permissions +umask 0077 + # -------------------------------------------------------------------------------- # project definition -- 2.20.1