Files
Gen4_R-Car_Trace32/2_Trunk/bin/macosx64/t32marm64-qt
2025-10-14 09:52:32 +09:00

25 lines
849 B
Bash

#!/bin/bash
set -e
SCRIPTPATH="$(cd $(dirname "$0") && pwd)"
APPNAME="t32marm-qt" # t32marm64-qt is deprecated, use t32marm-qt instead
APPPATH="${SCRIPTPATH}/${APPNAME}.app/Contents/MacOS/${APPNAME}"
echo "Warning: TRACE32 PowerView script t32marm64-qt is deprecated."
echo "Warning: The t32marm64.app was replaced by a new consolidated t32marm.app, which now supports both 32-bit and 64-bit CPUs."
echo "Warning: Please change the executable name accordingly in your preferred start method(s)"
echo "Warning: e.g. shortcut properties, shell scripts, ..."
echo "Warning: For details please visit: https://www.lauterbach.com/3264"
if [ ! -x "${APPPATH}" ]; then
echo "Bundle ${SCRIPTPATH}/${APPNAME}.app missing or corrupted."
exit 1
fi
exec open "${SCRIPTPATH}/${APPNAME}.app" -n --args "$@"
# Alternative method:
#
# exec "${APPPATH}" "$@"