Le 19 oct. 07 à 19:16, Ralf Wildenhues a écrit :
Hello Benoit,
* Benoit SIGOURE wrote on Fri, Oct 19, 2007 at 06:48:25PM CEST:
# Add boost libraries.
AM_CXXFLAGS += $(BOOST_CPPFLAGS)
AM_LDFLAGS += $(BOOST_LDFLAGS) $(BOOST_THREAD_LIB)
Don't put libs (-l...) in LDFLAGS, it messes up the ord
On Oct 19, 2007, at 7:16 PM, Ralf Wildenhues wrote:
Hello Benoit,
* Benoit SIGOURE wrote on Fri, Oct 19, 2007 at 06:48:25PM CEST:
# Add boost libraries.
AM_CXXFLAGS += $(BOOST_CPPFLAGS)
AM_LDFLAGS += $(BOOST_LDFLAGS) $(BOOST_THREAD_LIB)
Don't put libs (-l...) in LDFLAGS, it messes up the o
Hello Benoit,
* Benoit SIGOURE wrote on Fri, Oct 19, 2007 at 06:48:25PM CEST:
>
> # Add boost libraries.
> AM_CXXFLAGS += $(BOOST_CPPFLAGS)
> AM_LDFLAGS += $(BOOST_LDFLAGS) $(BOOST_THREAD_LIB)
Don't put libs (-l...) in LDFLAGS, it messes up the ordering. Put them
in *_LDADD/*_LIBADD or LIBS.
Hello list,
[CC: Akim: that's why trunk doesn't compile on Windows/MinGW]
In a project where we use both Automake and Libtool, I have a program
named `uconsole' which depends on Boost and a libtool library
`libkernel.a' built in the same directory (which also depends on Boost).
Here is an e