We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
the make -j4 did not work on MacOS because the c++ standard was not specified in the Makefile and an older standard was used by default
make -j4
Adding CXXFLAG = -std=gnu++17 to the Makefile allowed the PeleLM Executable to be built
CXXFLAG = -std=gnu++17
I do not know if the flag could be specified by default ?
the
make -j4did not work on MacOS because the c++ standard was not specified in the Makefile and an older standard was used by defaultAdding
CXXFLAG = -std=gnu++17to the Makefile allowed the PeleLM Executable to be builtI do not know if the flag could be specified by default ?