我刚刚升级了我的linux构建奴隶,从那时起我的sonarqube就停止了工作。
运行以重现:
docker run -it ubuntu:18.04 bash
apt-get update
apt-get install wget unzip
wget 192.168.1.5:9000/static/cpp/build-wrapper-linux-x86.zip
unzip build-wrapper-linux-x86.zip
cd build-wrapper-linux-x86
./build-wrapper-linux-x86-64 --out-dir test ls
ERROR: ld.so: object '/build-wrapper-linux-x86/libinterceptor-${PLATFORM}.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Docker镜像16.04,16.10正在工作,17.10,18.04无效。 PLATFORM env变量是空的,但我猜它是由build-wrapper脚本导出的。 任何人都有任何想法?