$ /usr/lib/gcc/x86_64-linux-gnu/11/g++-mapper-server --help
Usage: g++-mapper-server [OPTION...] [CONNECTION] [MAPPINGS...]
C++ Module Mapper.
-a, --accept Netmask to accept from
-f, --fallback Use fallback for missing mappings
-h, --help Print this help, then exit
-n, --noisy Print progress messages
-1, --one One connection and then exit
-r, --root DIR Root compiled module directory
-s, --sequential Process connections sequentially
-v, --version Print version number, then exit
Send SIGTERM(15) to terminate
For bug reporting instructions, please see:
<file:///usr/share/doc/gcc-11/README.Bugs>.
1条答案
按热度按时间e4yzc0pl1#
这对我在ubuntu 22.04(Makefile片段)上的
gcc-11
很有效:我遇到的警告是
g++-mapper-server
不会创建根目录,所以要确保先创建根目录。您仍然需要确定依赖关系,以便在编译导入代码之前创建/更新gcm。解释是
|
通过管道调用Map器进程,@
从gcc工具目录(cf gcc manual)解析进程名称。-r
选项设置根目录。注意保护空格和|
不受make
和shell的影响。默认的mapper服务器接受参数--你可以调整和使用它--下面是我的版本中的选项: