We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rocketmq-client-cpp是否支持在UNIX系统上如 AIX 系统上进行编译?
如果支持的话,能否提供一个release包 或者 编译步骤。
The text was updated successfully, but these errors were encountered:
看build.sh,里面是编译步骤
Sorry, something went wrong.
if test "$(uname)" = "Linux"; then declare cpu_num=$(cat /proc/cpuinfo | grep "processor" | wc -l) elif test "$(uname)" = "Darwin" ; then declare cpu_num=$(sysctl -n machdep.cpu.thread_count) fi 脚本无法直接使用, build.sh 脚本判断编译前 要判断 操作系统,而AIX 属于UNIX 系统 ,这是不支持吗?
if test "$(uname)" = "Linux"; then declare cpu_num=$(cat /proc/cpuinfo | grep "processor" | wc -l) elif test "$(uname)" = "Darwin" ; then declare cpu_num=$(sysctl -n machdep.cpu.thread_count) fi
就是以前没需求,然后特别做过对应的编译测试。不过我认为unix和linux/darwin差别不大,只要依赖能编译过,这个项目本身的编译应该没什么问题。
No branches or pull requests
rocketmq-client-cpp是否支持在UNIX系统上如 AIX 系统上进行编译?
如果支持的话,能否提供一个release包 或者 编译步骤。
The text was updated successfully, but these errors were encountered: