Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-03-02 Thread Fernan Bolando
On Wed, Mar 2, 2011 at 9:28 PM, Greg Comeau wrote: > In article , > Fernan Bolando wrote: >>just curious is it normal for 8l to follow some sort of precendence >>based on the commandline? this being done through ape/pcc >> >>this is unable to build >>8l -o spice -v /386/lib/ape/libf2c.a spice.8 u

Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-03-02 Thread Charles Forsyth
>and 8l will sort it out. by which i meant: you then don't name any libraries at all, since 8l will pick up the names from the references in the include files. and therefore, as well as not having to name libf2c.a, > you shouldn't need to mention libap.a,

Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-03-02 Thread Charles Forsyth
the solution is to add #pragma lib "/$M/lib/ape/libf2c.a" to the include file that f2c's generated code uses, and 8l will sort it out. you shouldn't need to mention libap.a, either, since something should be including an ape include file (and those have the #pragma libs)

Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-03-02 Thread Greg Comeau
In article , Fernan Bolando wrote: >just curious is it normal for 8l to follow some sort of precendence >based on the commandline? this being done through ape/pcc > >this is unable to build >8l -o spice -v /386/lib/ape/libf2c.a spice.8 unix.8 /386/lib/ape/libap.a > >this was able to build >8l -o s

Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-03-01 Thread Ethan Grammatikidis
On Mon, 28 Feb 2011 08:41 -0800, "Rob Pike" wrote: > someone should move those pages and all links from 2 to 8. There's no problem accessing any ?l page with man(1), unless it's grown a bug since I last pulled. I assume the problem is with web man indexes? If so, shouldn't the indexing be fixed?

Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-02-28 Thread Rob Pike
someone should move those pages and all links from 2 to 8. -rob

Re: [9fans] 8l follows a precedence based on the commandline arrangement

2011-02-28 Thread Charles Forsyth
>just curious is it normal for 8l to follow some sort of precendence >based on the commandline? this being done through ape/pcc it seems fairly logical; the procedure is somewhat unsportingly documented in man page 2l(1).

[9fans] 8l follows a precedence based on the commandline arrangement

2011-02-28 Thread Fernan Bolando
just curious is it normal for 8l to follow some sort of precendence based on the commandline? this being done through ape/pcc this is unable to build 8l -o spice -v /386/lib/ape/libf2c.a spice.8 unix.8 /386/lib/ape/libap.a this was able to build 8l -o spice -v spice.8 unix.8 /386/lib/ape/libf2c.a