I wrote that script a number of years ago to work with version 5.3 and 5.3.1. Since then the code has moved around a bit so it no longer works.
I could put in a PR to delete the script, but to add some guidance on how to compile the current release?
This is what I'm currently using
for dir in $(find ${MTEX_DIR} -type d | grep -v -e ".git" -e "@" -e "private" -e "data" -e "makeDoc" -e "templates" -e "nfft_openMP" -e "compatibility/")
do
MTEX_INCLUDE="-I ${dir} ${MTEX_INCLUDE}"
done
export MTEX_INCLUDE="${MTEX_INCLUDE} -a ${MTEX_DIR}/data -a ${MTEX_DIR}/plotting/plotting_tools/colors.mat"
mcc -R -singleCompThread -R -softwareopengl -m "<<script_path>>" <<args>> -o matlab_exe ${MTEX_INCLUDE}
I wrote that script a number of years ago to work with version 5.3 and 5.3.1. Since then the code has moved around a bit so it no longer works.
I could put in a PR to delete the script, but to add some guidance on how to compile the current release?
This is what I'm currently using