X-GPT

Results 6 issues of X-GPT

平台信息: OS: Ubuntu 18.04 GCC: 8.0 Boost: 1.66 Thrift: 1.0-dev 报错信息形式为: ``` evpp/labs/evthrift/thrift_conn.h:48:38: error: field ‘outputTransport_’ has incomplete type ‘boost::shared_ptr’ boost::shared_ptr outputTransport_; ``` 以及shared_ptr的问题,在这个模块中使用的是boost::shared_ptr,但是thrift定义了stdcxx::shared_ptr,在中> 修复方法为在evpp/labs/evthrift/thrift_conn.h中include的时候添加: ``` #include using apache::thrift::stdcxx::shared_ptr; ```...

if i add `-lexpat` to the end, it's ok ``` /usr/bin/gcc-9 -o temacs.tmp \ -Demacs -I. -I. -I../lib -I../lib -isystem /usr/include/libxml2 -isystem /usr/local/include -isystem /usr/include/freetype2 -MMD -MF deps/.d -MP -isystem...

bug

Currently dap-mode supports debug individual tests, but does not support benchmark test

I want to use uretprobe to capture tls traffic(Read and Write) of golang binary, but real affected bytes is in the return values

OS: Ubuntu18.04 64bit GCC: 8.0 Boost: 1.66 由于使用到的boost::context下的类和函数已经转移到boost::context::detail下,并且有的函数参数发生变化,需要进行更改plugin_boost/network下的uthread_context_boost.h和uthread_context_boost.cpp,之后可以成功编译,但是未进行测试. 代码中中文注释部分为修改的地方. 其中uthread_context_boost.h改为: ``` #pragma once #include #include #include #include #include "phxrpc/network.h" // 添加 using boost::context::detail::fcontext_t; using boost::context::detail::transfer_t; namespace phxrpc { class UThreadContextBoostInit...