-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with building/creating executable - cmake version #801
Comments
From what you posted, it looks like you need to go into the sundials submodule here: Or do some other hacks like symlink cmake3 to somewhere and make sure that somewhere appears earlier in your |
Thank you, I was able to sort out the issue after I installed the latest cmake version in my personal user account and using alias to define this version as the cmake instead of the root level outdated old cmake version. |
Hi, |
Each executable is case specific. But they will share a lot of compiled library code. So you can just |
Oh, thanks |
Hello,
Thanks for this code.
I am trying to compile and build the code (GNU).
I am following the commands listed in the main page
git clone --recursive [email protected]:AMReX-Combustion/PeleC.git
cd PeleC/Exec/RegTests/PMF
make TPLrealclean && make realclean && make TPL && make -j
./Pele3d.xxx.yyy.ex example.inp
Here, I face an issue as soon as I run the third command
It says cmake version 3.12 or higher is required. The default cmake is standard cmake - cmake 2.8.12.2 in /usr/bin/cmake. The system does have cmake3 in the same top directory as cmake i.e. /usr/bin/cmake3
I tried using alias and setting cmake to cmake3, but this didn't wotk as the code still used the standard cmake.
How do I tell the code to compile using this cmake3, in place of standard cmake? In which make files do I need to change and update?
Requesting for help
The text was updated successfully, but these errors were encountered: