Perhaps I am delusional or just getting inconsistent results. Given sample SConsctruct how should I expect excutable B to link.
``` #!python env = Environment() env.SharedLibrary( '#lib/A', 'A.c' ) env.Library( '#lib/A', 'A.c' ) cln = env.Clone() cln.Append( LIBS = 'A' ) cln.Append( LIBPATH = '#lib' ) cln.Program( 'bin/B', 'B.c' ) ``` This seems to give inconsistent linking results. V/R, William On Wed, Jun 24, 2015 at 3:33 PM, William Blevins <[email protected]> wrote: > Team, > > I may have found a problem. When I updated from 2.3.0 to 2.3.5, I found > that libraries are not correctly found as dependencies. For the > executables in question, no libraries show up in "--tree=<x>" . > > I can try to put together a simple test tonight. > > V/R, > William >
_______________________________________________ Scons-dev mailing list [email protected] https://pairlist2.pair.net/mailman/listinfo/scons-dev
