This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gcc doesn't like my .o file at the end


it wants it at the beginning. The gcc on my linux box doesn't care.

Any way to make gcc work with the object file at the beginning?

example:

---doesn't work
$ gcc -mno-cygwin -mwin32 -I/[blah..] -L[blah..] 
-lglib-2.0 -lintl -liconv   -o hello hello.o  


---works
$ gcc hello.o  -mno-cygwin -mwin32 -I/[blah..] -L[blah..] 
-lglib-2.0 -lintl -liconv   -o hello

any ideas?

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]