Hello,
When using meshtool, I encountered the following problem.
I wanted to use the interpolate shelldata utility. To use it, it was necessary to make meshtool using addons, so I modified my_switches.def file in the following way:
#MT_DEBUG = 1 # Compile in debug mode
#MT_STATIC = 1 # Try to link statically
MT_OPENMP = 1 # Use OpenMP
#MT_SANITIZE = 1 # Activate memory sanitizer in compile flags
#MT_ADDONS = 1 # Include addons
MT_SILENT = 1 # Dont show build command
MT_CC_ENV = gnu # choose between intel, gnu, clang
#TUNE_NATIVE = 1 # tune for the native platform (not for deployment)
PAR_MAKE = 16 # choose the number of processes to use for parallel make
#MT_SILENT_PRG = 1 # use silent progress instead of a bar
#MT_GZIP = 1 # whether gzip is available
#WINDOWS_BUILD = 1 # tell build system we are on windows
Unfortunately, during the make process, I received the following error:
make -j16 -s meshtool_deps
make -s meshtool
* building addons ..
/bin/sh: 1: cd: can't cd to meshtool_addons
make[1]: *** [Makefile:165: meshtool] Error 2
make: *** [Makefile:96: parbuild] Error 2
or, in other way:
fatal error: addons_utils.h: No such file or directory
I used the master branch from meshtool git.
Has anyone encountered this problem before or knows what might be causing this error?
Thank you in advance for help!