当我尝试使用protobuf'-std = c ++ 11'生成的源时,将其添加到我尝试在其中使用的目标的编译标志中,导致编译失败(因为我使用的是C +后+11个功能)。
以下是一个非常简单的示例。
3个文件,都在单个目录中:
meson.build
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
)
main.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
标志?
答案 0 :(得分:1)
您可以通过以下方式禁用所有依赖项cxxflags
proto_dep = dependency('protobuf').partial_dependency(compile_args : false,
link_args : true, links : true, includes : true, source : true)
如果缺少任何重要标志,可以手动将其重新添加。
答案 1 :(得分:0)
因此我找到了解决该问题的方法,您可以根据protobuf在cpp_args中为目标传递“ -std = c ++ 17”来编译它。
proto_interface = declare_dependency(
sources : generated,
dependencies : proto_dep
)
test_exe = executable(
'test_exe',
'main.cpp',
dependencies : proto_interface,
cpp_args : ['-std=c++17']
)
这似乎不是很干净,因为以这种方式为-std
的源传递了3个test_exe
标志,就像下面来自compile_commands.json
的代码片段一样:
-std=c++17 -g -pthread -g -std=c++11 -DNDEBUG -std=c++17