Re: [Boost-users] [Urgent request] : Boost default_locale() is causing an application crash!

2020-09-17 Thread Juan Ramírez via Boost-users
May I know which compiler are you using? On Sat, Aug 29, 2020 at 10:33 AM kamallochan Jena via Boost-users < boost-users@lists.boost.org> wrote: > Attaching a path.cpp file for reference. > > On Tue, Aug 25, 2020 at 5:33 PM kamallochan Jena > wrote: > >> Hi All, >> >> Thank you for your kind sup

Re: [Boost-users] Linking Problem

2021-09-04 Thread Juan Ramírez via Boost-users
Hi, Can you confirm boost libs were installed in /usr/local/lib? Or maybe you built boost using layout=versioned? That will create files having version number and arch information in their names. In this scenario using plain `-lboost_xxx.so` would not work as you would have to use the whole l

Re: [Boost-users] Thread crash in destructor

2021-10-07 Thread Juan Ramírez via Boost-users
The behavior changed in BOOST_THREAD_VERSION 3 (which is default in boost 1.77). Are you sure detach() and join() do not help? Can you provide a call stack? On 10/7/21 06:09, Alexander Carôt via Boost-users wrote: Hi all, I had been using an old boost system and boost thread lib for a couple

Re: [Boost-users] [thread] attribute constructor failing to compile

2022-06-07 Thread Juan Ramírez via Boost-users
It looks like the overload taking thread::attributes as parameter does not accept variadic arguments: ``` template thread(attributes& attrs, Callable func); ``` https://www.boost.org/doc/libs/1_79_0/doc/html/thread/thread_management.html#thread.thread_management.thread.attr_callable_constructor