The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 06-30-2006
jim mcnamara jim mcnamara is offline Forum Staff  
...@...
  
 

Join Date: Feb 2004
Location: NM
Posts: 5,763
It looks as if you did not completely compile your code. Some compilers, like microfocus, for example, allow you to have have two steps in compilation. You can, using options, tell it where to stop compiling.

If you set a -c option it tells the compiler to create an object file (myfile.o)
Which is what you seem to be trying to run. .o cannot be loaded. Only executable image files can be loaded and run.

What compiler