gpt4 book ai didi

c++ - 如何正确使用生成的 protobuf 源?

转载 作者:行者123 更新时间:2023-11-28 04:23:38 25 4
gpt4 key购买 nike

当我尝试使用由 protobuf 生成的源代码时,'-std=c++11' 被添加到我尝试使用它们的目标的编译标志中,导致编译失败(因为我使用的是后 C+ +11 项功能)。
以下是一个非常小的例子。3 个文件,都在一个目录中:

介子构建

project('test', 'cpp',
version : '0.1',
default_options : ['warning_level=3', 'cpp_std=c++17', 'werror=true']
)

protoc = find_program('protoc')
proto_dep = dependency('protobuf')

gen = generator(protoc,
output : ['@BASENAME@.pb.cc', '@BASENAME@.pb.h'],
arguments : ['--proto_path=@CURRENT_SOURCE_DIR@', '--cpp_out=@BUILD_DIR@', '@INPUT@'])

generated = gen.process(['defs.proto'])

test_exe = executable(
'test_exe',
'main.cpp',
generated,
dependencies : proto_dep
)

主要.cpp

#include "defs.pb.h"
#include <chrono>

int main()
{
using namespace std::chrono_literals;
}

defs.proto

syntax = "proto2";

package messages;

message Person {
required string node= 1;
required string payload= 2;
}

运行 meson build && ninja 后失败并出现以下错误:

[1/3] Compiling C++ object 'test_exe@exe/main.cpp.o'.
FAILED: test_exe@exe/main.cpp.o
c++ -Itest_exe@exe -I. -I.. -I/usr/local/include -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wnon-virtual-dtor -Wextra -Wpedantic -Werror -std=c++17 -g -pthread -g -std=c++11 -DNDEBUG -MD -MQ 'test_exe@exe/main.cpp.o' -MF 'test_exe@exe/main.cpp.o.d' -o 'test_exe@exe/main.cpp.o' -c ../main.cpp
../main.cpp: In function ‘int main()’:
../main.cpp:6:24: error: ‘chrono_literals’ is not a namespace-name
using namespace std::chrono_literals;
^~~~~~~~~~~~~~~
../main.cpp:6:39: error: expected namespace-name before ‘;’ token
using namespace std::chrono_literals;
^
[2/3] Compiling C++ object 'test...e/meson-generated_defs.pb.cc.o'.
ninja: build stopped: subcommand failed.

问题是:如何修复 meson.build 文件,以便正确生成源代码,并且只有 std= 标志传递由 project(default_options?

最佳答案

您可以禁用所有依赖项 cxxflags

proto_dep = dependency('protobuf').partial_dependency(compile_args : false,
link_args : true, links : true, includes : true, source : true)

如果缺少任何重要的标志,您可以手动将它们添加回来。

关于c++ - 如何正确使用生成的 protobuf 源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54942923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com