开源版本EMQX 5.0.10无法编译通过

!  git clone -b v5.0.10 --depth=1 https://github.com/emqx/emqx.git
! cd emqx && make

......
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
ATOMIC
    linked by target "quicer_static" in directory /usr/src/emqx/_build/default/lib/quicer

-- Generating done
CMake Generate step failed.  Build files cannot be regenerated correctly.
make[1]: *** [Makefile:11: build-nif] Error 1
make[1]: Leaving directory '/usr/src/emqx/_build/default/lib/quicer'
===> Hook for compile failed!

make: *** [Makefile:121: emqx] Error 1

会报上述错误

你好,你可以改为使用以下命令编译 EMQX,这将不构建 QUIC:

export BUILD_WITHOUT_QUIC=1;make
1 个赞

通过了