|
From: Tor L. <tm...@ik...> - 2002-01-07 05:29:36
|
Daddius writes: > this is what i have to do to compile the source code > gcc -o hello c:/windows/desktop/hello/hello.o Why in the earth do you keep your object file on the desktop? (Is the source file there, too?) But if you insist on doing that, well, cd to that folder, then, before running gcc: c: cd /windows/dekstop gcc -o hello hello.o Then hello.exe will also appear on the desktop. --tml |