On 9/18/19 2:10 PM, Gary Roach wrote:
>
>
> Thanks for the reply. I'm not sure that this is the correct way to
> fashion a response. I fnound the forum format a bit confusing.
>
> For your second question: I am installing Deal.II from
> dealii-9.1.1.tar.gz. I created a Deal.II directory in my home directory
> and unzipped the tar file there. I completely stripped out a previous
> installation because I thought I had misinstalled it.
Are you calling the cmake gui in the directory into which you unpacked
the sources? You should be calling it in a separate build directory instead.
> I've used the GUI successfully in the past and for the occasional cmake
> user it is great. I suspect that someone that uses cmake a lot, it might
> be cumbersome. For use with the tutorials I created a bash file that
> includes the
>
> For you first question: The use of "cmake Eclipse CDT3 - Unix Makefiles
> ."on the command line throws an error,
Yes. The correct syntax is
cmake -G"cmake Eclipse CDT3 - Unix Makefiles" .
Note the quotes. (Although for me, it is CDT4. I don't know if CDT3 was
ever correct.)
> but different from the one thrown
> by cmake-GUI. From the CMakeError.log, I found "#error "__AVX__ flag
> not set, no support for AVX" error. Now my understanding that AVX is
> associated with the Intel Math Library but not needed for an AMD
> installation. Not sure why this is happening.
The AVX flags relate to instructions your processor understands. This is
something that cmake should figure out itself. Did you set any of the
variables that relate to it in the GUI? That's one of the dangers of
using the GUI: You get to see all of the internal variables, and might
have been tempted to change things that aren't meant to be changed.
My recommendation is to just blow the whole directory away and start
from scratch.