Comment 2 for bug 707966

Revision history for this message
Václav Šmilauer (eudoxos) wrote :

I was compiling with 4.5 on maverick, and never had problems. I think the problem can be that yade-support is not linked with boost libs at all (...?). You can try to go to lib/SConscript:18, and change

 LIBS=['dl','m']+[]

to

 LIBS=['dl','m']+[l for l in env['LIBS'] if l!='yade-support']

(yade-support is in env['LIBS'] so that core and all plugins link with it automatically, but yade-support cannot obviously link with itself, so it muse be filtered away, keeping the rest of env['LIBS'] (which contains all boost libs as well).

I don't have a big machine so cannot try myself, sorry.

HTH, v.