| www.delorie.com/archives/browse.cgi | search |
On Sat, Aug 27, 2011 at 05:50:06AM +0000, srinu wrote:
# Hi,
#
# This problem is very frequently occuring irrespective of executable.
# A new laptop, windows7, downloaded the Cygwin with utmostcare in slecetingthe
# desired and permissions.
# Wrote simple programe in c ( simple such that: print "hello world").
# while try to run the executable created throws the error: cannot execute
# binary file.
#
# flow is like follows:
# C file created: Hello.c ( full permissions)
# Compiled and linked: gcc -c Hello.c -o helloTest
You get what you asked for with -c, an object file. Instead use
gcc Hello.c -o helloTest
which creates an executable.
Regards,
Jens
--
Jens Schweikhardt http://www.schweikhardt.net/
SIGSIG -- signature too long (core dumped)
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |