您正在查看: EOS-新手问答 分类下的文章

EOS 重置依赖项 重新编译 MAC

brew remove --force boostbrew 
remove --force llvmcd /path/to/eos
rm -rf build/
git pull
git submodule update --init --recursive
./eosio_build.sh


EOS ERROR: Linking /usr/local/Cellar/python/3.6.5… Error: Permission denied @ dir_s_mkdir – /usr/local/Frameworks

解决方案,终端执行以下命令

sudo mkdir /usr/local/Frameworks
sudo chown $(whoami):admin /usr/local/Frameworks


EOS ERROR:’stdint.h’ file not found when running the example of smart contract “xxxx”

解决方案,终端执行以下命令

cd ~/eos/build
sudo make install


EOS ERROR: Could not find a package configuration file provided by “LLVM” (requested version 4.0) with any of the following names

解决方案,终端执行以下命令

export LLVM_DIR=/usr/local/Cellar/llvm\@4/4.0.1/lib/cmake

https://github.com/EOSIO/eos/issues/43

EOS ERROR: Failed to find Gettext libintl (missing: Intl_INCLUDE_DIR)

解决方案,终端执行以下命令

brew unlink gettext && brew link --force gettext
find /usr -name libintl* -print 2>/dev/null

参考链接 https://github.com/EOSIO/eos/issues/2028?ref=tokendaily