On Tue, Apr 29, 2003 at 12:00:35PM +1000, Bradley Marshall wrote: > On Tue, Apr 29, 2003 at 08:50:22AM +1000, Bradley Marshall wrote: > > That sounds good in theory, but I get the following error message when > > building in a sid chroot on vore, and a local i386 build: > > > > gcc -c -o PHONES.o generic.o nokia.o nk7110.o nk6510.o nk6100.o atgen.o > > ateric.o atnok.o atsie.o dc2711.o fake.o nk6160.o > > gcc: cannot specify -o with -c or -S and multiple compilations > > Changing the -c to a -r seems to get it further, its now dying with > messages like:
Not the same thing. The -r is a linker flag. What exactly is PHONES.o used for? If it's just being linked into something else, why not just do: ar rc PHONES.a .... Then replace PHONES.o in other linking with PHONES.a. -- Debian - http://www.debian.org/ Linux 1394 - http://www.linux1394.org/ Subversion - http://subversion.tigris.org/ Deqo - http://www.deqo.com/

