-2

我正在尝试从github 链接构建 postfix-exporter 代码。它依赖于文件go-systemd中提到的包。我在文件中看到,提到的包版本是 但是当我为此路径运行时,它开始下载最新版本(),该版本在最新提交中存在问题并导致编译失败。进来的错误是go.modgithub.com/coreos/go-systemd/v22 v22.0.0go.modv22.0.0.go get -uv22.2.0go-systemd

github.com/coreos/go-systemd/v22@v22.2.0/sdjournal/journal.go:313:60: error: '_SD_ARRAY_STATIC' undeclared here (not in a function) // my_sd_id128_to_string(void *f, sd_id128_t boot_id, char s[_SD_ARRAY_STATIC SD_ID128_STRING_MAX]) ^ In file included from /usr/include/systemd/sd-journal.h:31:0, from pkg/mod/github.com/coreos/go-systemd/v22@v22.2.0/sdjournal/journal.go:27: pkg/mod/github.com/coreos/go-systemd/v22@v22.2.0/sdjournal/journal.go:313:77: error: expected ']' before numeric constant // my_sd_id128_to_string(void *f, sd_id128_t boot_id, char s[_SD_ARRAY_STATIC SD_ID128_STRING_MAX])

我想知道,如果不是这样,或者我缺少一些选项来尊重中提到的依赖包的版本,如何编译任何依赖模块的特定版本go.mod

提前非常感谢,请原谅我的golang知识。

4

2 回答 2

3

不要使用-u. 的目的-u是让 Go 尝试将您升级到最新的次要版本或补丁版本:

-u 标志指示 get 更新提供命令行上命名的包的依赖项的模块,以便在可用时使用更新的次要版本或补丁版本。

如果您只是想安装依赖项,请使用go get.

于 2021-03-08T00:59:12.263 回答
0

我试图为 Centos7 构建 podman 并发现这个错误,注意到 _SD_ARRAY_STATIC 没有定义,所以我只是在谷歌中搜索并找到了这个头文件:https ://code.woboq.org/qt5/include/systemd/ _sd-common.h.html。另外,通过在我的 docker 中搜索这个文件,我发现了这个非常旧的文件:/usr/include/systemd/_sd-common.h,所以我决定修改它并添加该定义:

/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/

#ifndef foosdcommonhfoo
#define foosdcommonhfoo

/***
  This file is part of systemd.

  Copyright 2013 Lennart Poettering
...
...
#ifndef _SD_END_DECLARATIONS
#  ifdef __cplusplus
#    define _SD_END_DECLARATIONS                                \
        }                                                       \
        struct __useless_struct_to_allow_trailing_semicolon__
#  else
#    define _SD_END_DECLARATIONS                                \
        struct __useless_struct_to_allow_trailing_semicolon__
#  endif
#endif

#ifndef _SD_ARRAY_STATIC
#  if __STDC_VERSION__ >= 199901L
#    define _SD_ARRAY_STATIC static
#  else
#    define _SD_ARRAY_STATIC
#  endif
#endif

#endif

瞧,让它工作了。TL;DR,可能您必须更新 systemd 包或至少更新 systemd C 库。

于 2021-04-19T04:38:56.513 回答