安裝過(guò)程中會(huì)出現(xiàn)以下錯(cuò)誤
fatal error: too many errors emitted, stopping now [-ferror-limit=]
9 warnings and 20 errors generated.
make[2]: *** [atomicops_internals_x86_gcc.lo] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
完整安裝流程
1. 下載安裝包
下載地址:https://github.com/protocolbuffers/protobuf/releases/tag/v2.5.0
2. 下載下來(lái)后解壓壓縮包,并進(jìn)入目錄
tar -xzvf protobuf-2.5.0.tar.gz
cd protobuf-2.5.0
3. 編輯 platform_macros.h 文件
文件地址:src/google/protobuf/stubs/platform_macros.h
添加下面信息:
#elif defined(__arm64__)
#define GOOGLE_PROTOBUF_ARCH_ARM 1
#define GOOGLE_PROTOBUF_ARCH_64_BIT 1
- 安裝檢測(cè)
make check
- 安裝及編譯
make && make install
- 配置環(huán)境變量
vim ~/.bash_profile
在文件結(jié)尾添加環(huán)境變量
export PROTOBUF=/usr/local/protobuf
export PATH=$PATH:$PROTOBUF/bin
- 生效
使用source命令匈棘,使配置文件生效
source ~/.bash_profile
- 驗(yàn)證
protoc --version
參考文章:
ProtoBuf2.5.0 Mac M1 cpu make failed · Issue #8836 · protocolbuffers/protobuf