Attila M. Szilagyi

Results 27 comments of Attila M. Szilagyi

To clarify, the test and log is from a Windows 10 build with msys2 mingw64 compiler. I haven't been able to get the tests (make check) build under Linux mingw64...

I ran it under the debugger, but it had errors before it got to that error, so I decided to reduce the complexity and used an example program that has...

@matanui159 To clarify the initial problem didn't had to do with GetModuleFileName. It had to do with the variable passed to **backtrace_create_state** which in my case was temporary for some...

Yes I agree @matanui159. I'm opening another issue for the remaining problem which is that with mingw the library doesn't work.

Confirming the same issue under Linux/Ubuntu & Fedora with v1.9.231. Any workarounds? From the trace it seems that the stream format has changed needing sample headers?

It looks like there's not much attention on this issue, so I'm thinking about looking at it myself. It probably works with the other SDKs so I would look and...

Anyone care to tell me what's the plan with this issue? I'm willing to fix it but I need to know if this is going to be deprecated against websockets...

Thanks Sergey, Are you saying that under Windows it (TranscribeStreaming) should work with CurL instead of WinHTTP? I assume it should then also work under Linux?

Clang compiles fine the test code: $ g++ -std=c++11 test.cpp -o test but with gcc: export CC=/opt/local/bin/gcc-mp-9;export CXX=/opt/local/bin/g++-mp-9 $$CXX -std=c++11 test.cpp -o test In file included from /opt/local/include/gcc9/c++/bits/postypes.h:40, from /opt/local/include/gcc9/c++/iosfwd:40,...

I have this: ``` if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra") add_definitions( -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_CHRONO_HEADER_ONLY -DYAS_SERIALIZE_BOOST_TYPES -DYAS_OBJECT_MAX_MEMBERS=50 ) elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra") add_definitions( -DBOOST_ERROR_CODE_HEADER_ONLY -DBOOST_CHRONO_HEADER_ONLY -DYAS_SERIALIZE_BOOST_TYPES...