Most environment variable have alphanumeric names and don’t need any special consideration to access.
On Windows, some important programs still use the “Program Files (x86)” directory, denoted by environment variable “ProgramFiles(x86)”.
programenvimplicitnoneinteger::icharacter(100)::pathcallget_environment_variable('ProgramFiles(x86)',path,status=i)if(i/=0)error stop"env var ProgramFiles(x86) not found"print'(a)',pathendprogramenv
If rotating tick labels, the overall axes typically need to be positioned to allow for the rotated labels, otherwise the tick labels can be cut off the figure edges.
The axes position is updated automatically with
constrained_layout
option of figure().
If a DLL conflicts with a programs needed DLLs, the program may quit with a specific message, or it may silently exit.
The
return code
may correspond to segfault or other error.
To help see if a DLL conflict is occurring, use
gdb
to run the program.
This works even for general programs that weren’t built on the system.
We suggest obtaining GDB via
MSYS2.
If there is a problem with a DLL, GDB will often print the name of the DLL.
If the DLL is in an unexpected location, this may indicate a directory that should not be in environment variable Path.
CMake has built-in support for C/C++ static code analysis tools such as
CppCheck.
Apply CppCheck to CMake targets with
CMakeLists.txt
by setting
CMAKE_CXX_CPPCHECK.
File “cppcheck.supp” contains suppressions for false positives.
NOTE: CMake runs cppcheck from an arbitrary directory, so per-file suppressions in the file don’t work as usual.
To suppress a warning for a specific file, use the --suppress option to cppcheck in CMakeLists.txt like:
When moving between Linux systems that often default to Bash, and macOS systems that often default to
Zsh,
one may wish to change the default shell parameters.
For example, to remove duplicate entries in shell history, so that pressing “up” on repeated commands doesn’t make you press “up” repeatedly to get to the last non-duplicated command, set like the following.
Bash: ~/.inputrc: ignore duplicate lines, and omits lines that start with space.
exportHISTCONTROL=ignoreboth
Zsh: ~/.zshrc: approximately the equivalent of the above Bash setting.
Users (or developers!) may not realize that the shell expands glob asterisk * unless enclosed in quotes.
This can surprise users unfamiliar with this shell behavior, say when using Python argparse with position-based arguments.
Say a user has a single file to process in a directory, and doesn’t want to type the long filename, so they type:
python myScript.py ~/data/*.h5 32
Here we assume myScript.py expects two positional arguments, the first being a filename, and the second being an integer.
If more than one “*.h5” file subsequently exists and myScript.py is run, the actual input to Python would be like:
CMake ExternalProject works for many types of sub-projects across CMake generators.
An implementation detail of Ninja is by default ExternalProject doesn’t print progress until each ExternalProject step is finished.
For large external projects that take several minutes to download and build, users could be confused thinking CMake has frozen up.
To make ExternalProject show live progress as it does with Makefiles generators, add the
USES_TERMINAL_* true
arguments to ExternalProject_Add.
CMake doesn’t print the Generator version by default.
Sometimes bugs are related to a specific generator version.
Reveal CMake generator version like this
snippet.
PyTest can work with Matlab Engine if the Matlab Engine is setup.
Use a try-catch to ensure any non-functioning Matlab Engine issue is skipped.
importpytestdeftest_me():
try:
mateng = pytest.importorskip("matlab.engine")
exceptException: # can also get RuntimeError, let's just catch all pytest.skip("Matlab engine not available")
eng = mateng.start_matlab("-nojvm")
# test code