static linking and isofs9660

2003-08-30 Thread Greg Buchholz
I've been trying to statically link the isofs9660 translator (for use in a bootable cd) and I have been unsuccessful so far. My best idea was to try... make LDFLAGS=$LDFLAGS -static ...while in the ../isofs/ directory. This resulted in the following error... gcc

Re: static linking and isofs9660

2003-08-30 Thread Marcus Brinkmann
On Sat, Aug 30, 2003 at 01:13:15AM +0100, Greg Buchholz wrote: I've been trying to statically link the isofs9660 translator (for use in a bootable cd) and I have been unsuccessful so far. My best idea was to try... make LDFLAGS=$LDFLAGS -static Try make isofs9660.static Thanks,

Re: static linking and isofs9660

2003-08-30 Thread Alfred M. Szmidt
I've been trying to statically link the isofs9660 translator (for use in a bootable cd) and I have been unsuccessful so far. My best idea was to try... There is a make target called iso9660fs.static (infact, such a target exists for all translators), use that instead.

Re: static linking and isofs9660

2003-08-30 Thread Jeroen Dekkers
On Sat, Aug 30, 2003 at 01:13:15AM +0100, Greg Buchholz wrote: I've been trying to statically link the isofs9660 translator (for use in a bootable cd) and I have been unsuccessful so far. My best idea was to try... make LDFLAGS=$LDFLAGS -static You can do what Marcus and Alfred