I'm trying to install llvm on an arm and it does take a lot of time. (I know crosscompiling would be faster, but i didn't get it to work yet) I'm accessing the system through the serial port.
I ran the configure script and started "sudo make ENABLE_OPTIMIZED=1 -j$(nproc)" to compile. Since I knew it would take forever I turned off the pc in the meantime. Foolishly I didn't print the output to a file, so I have no information about whether everything worked or not. When I came back a day later, I just assumed everything is fine and started "make install".
Now I see that the system is again compiling tons of files which usually are compiled at "make".
I'm a beginner with Linux, so I thought at the make install stage no compilation is done anymore. Also the "tutorials" like Why always ./configure; make; make install; as 3 separate steps? don't mention compiling at "make install".
So the actual questions:
Is there usually also compiling involved in the make install stage or is it almost certain that make failed at some point and make install is trying to fix that?
Is it a very bad idea to terminate the make install and restart the dual-core mode of make "make ENABLE_OPTIMIZED=1 -j$(nproc) >> out.txt" before rerunning make install? Or do I have to wait for "make install" to finish, because it already started to install stuff and I shouldn't mess around with it?
I appreciate your suggestions!!