edgeai-tidl-tools icon indicating copy to clipboard operation
edgeai-tidl-tools copied to clipboard

Latest setup.sh checkin breaks gcc-arm installation

Open verderog opened this issue 10 months ago • 1 comments

@vtrip97 Lines 428/429 of your checkin of setup.sh do not reset the path and cause gcc-arm and cl7x which follow it to get installed to an unexpected location.

verderog avatar Apr 09 '24 16:04 verderog

Quick fix, add cd - as shown below:

# graph optimizer tool setup
if [[ $arch == x86_64 && $skip_model_optimizer -eq 0 ]]; then
    cd $SCRIPTDIR/scripts/osrt_model_tools/onnx_tools/tidl-onnx-model-optimizer
    source ./setup.sh
    cd -
fi

verderog avatar Apr 10 '24 12:04 verderog

Fixed in a8b62829572fe24af1d68e7c940474488aedfce1

verderog avatar Aug 05 '24 14:08 verderog