You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2020/01/08 13:23:35 UTC

[GitHub] [rocketmq-client-cpp] Jenuce opened a new issue #221: why not remove boost?

Jenuce opened a new issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221
 
 
   We will use rocketmq,but it need boost for cpp,so we must to substitute kafka for rocketmq.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] ShannonDing commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
ShannonDing commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-572347303
 
 
   for the current SDK, using the script `build.sh`, the rocketmq can be built to a dynamic or static library with a built-in boost static library, you don't need to install boost again in runtime env.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] ShannonDing closed issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
ShannonDing closed issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] ShannonDing commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
ShannonDing commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-589960338
 
 
   link #255 
   @ifplusor @maurodelazeri, Update jsoncpp to 0.10.7 and make the <functional> included in the example/common.h, I think, the build.sh for the master will work well.
   is there any other suggestion?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] maurodelazeri commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
maurodelazeri commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-588198677
 
 
   @ifplusor im not using `build.sh` on re-dev... re-dev works fine for me, the only thing is, I had to add `#include <functional>` on `common.h` 
   I cant compile this the master `rocketmq-client-cpp` with `build.sh`, apparently `jsoncpp` wants a few things that only works on gcc 6 and im using 8

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] ifplusor commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-589911069
 
 
   @maurodelazeri  Which version of jsoncpp are you using?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] maurodelazeri commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
maurodelazeri commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-587513829
 
 
   @ifplusor `#include <functional>` is missing on `common.h` on `re-dev` witch works great...
   
   is there any timeline for this new major release ?
   
   the current master does not compile out of the box for me with `./build.sh`
   
   http://i.imgur.com/sqdPFgH.png
   
   ```
   mauro@oraculo:~/Downloads/rocketmq-client-cpp$ gcc -v
   Using built-in specs.
   COLLECT_GCC=gcc
   COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
   OFFLOAD_TARGET_NAMES=nvptx-none
   OFFLOAD_TARGET_DEFAULT=1
   Target: x86_64-linux-gnu
   Configured with: ../src/configure -v --with-pkgversion='Ubuntu 8.3.0-6ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
   Thread model: posix
   gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1~18.04.1) 
   ```
   
   ```
   mauro@oraculo:~/Downloads/rocketmq-client-cpp$ make -v
   GNU Make 4.1
   Built for x86_64-pc-linux-gnu
   Copyright (C) 1988-2014 Free Software Foundation, Inc.
   License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
   This is free software: you are free to change and redistribute it.
   There is NO WARRANTY, to the extent permitted by law.
   ```
   
   ```
   mauro@oraculo:~/Downloads/rocketmq-client-cpp$ g++ -v
   Using built-in specs.
   COLLECT_GCC=g++
   COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
   OFFLOAD_TARGET_NAMES=nvptx-none
   OFFLOAD_TARGET_DEFAULT=1
   Target: x86_64-linux-gnu
   Configured with: ../src/configure -v --with-pkgversion='Ubuntu 8.3.0-6ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
   Thread model: posix
   gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1~18.04.1)
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] maurodelazeri commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
maurodelazeri commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-590852801
 
 
   @ifplusor i was using the last version, and yes I did exactly what @ShannonDing said... works fine

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] ifplusor commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-572289587
 
 
   We will remove boost in next major version, and we have some result in https://github.com/ifplusor/rocketmq-client-cpp/tree/re-dev

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [rocketmq-client-cpp] ifplusor commented on issue #221: why not remove boost?

Posted by GitBox <gi...@apache.org>.
ifplusor commented on issue #221: why not remove boost?
URL: https://github.com/apache/rocketmq-client-cpp/issues/221#issuecomment-588048221
 
 
   @maurodelazeri Don't run build.sh. If you want use re-dev branch, please read "Build and Install" section in README.md first.
   rocketmq-client-cpp 2.0 coming soon, but not re-dev branch.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services