I would like to run a c++ program on my school's linux cluster, but first I need to build the executable on their machine (scp
'ing my executable over doesn't seem to work). Usually I build everything on my machine with an IDE. So how do I get the command that the IDE put together for me?
Asked
Active
Viewed 137 times
1

Taylor
- 1,797
- 4
- 26
- 51
-
The build command will be displayed in the IDEs build log. window. You may need to enable extra logging to see it. – Jan 26 '17 at 23:17
-
ah that was easy. thanks – Taylor Jan 26 '17 at 23:59