当前位置: 代码迷 >> 综合 >> Skywalking 编译(Mac m1版本)
  详细解决方案

Skywalking 编译(Mac m1版本)

热度:66   发布时间:2023-11-05 09:10:31.0

1.克隆代码

git clone https://github.com/apache/skywalking.git
cd skywalking/

2.执行初始化脚本,更新
 

git submodule init
git submodule update

3.打包变异

./mvnw clean package -DskipTests -Dos.detected.classifier=osx-x86_64

4.说明

官网的步骤最后一步的命令是

./mvnw clean package -DskipTests

不过在m1的Mac下是不适用的,会抱下面的错误

[ERROR] Failed to execute goal org.xolstice.maven.plugins:protobuf-maven-plugin:0.6.1:compile (grpc-build) on project apm-network: Unable to resolve artifact: Missing:
[ERROR] ----------
[ERROR] 1) com.google.protobuf:protoc:exe:osx-aarch_64:3.12.0
[ERROR]
[ERROR]   Try downloading the file manually from the project website.
[ERROR]
[ERROR]   Then, install it using the command:
[ERROR]       mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=3.12.0 -Dclassifier=osx-aarch_64 -Dpackaging=exe -Dfile=/path/to/file
[ERROR]
[ERROR]   Alternatively, if you host your own repository you can deploy the file there:
[ERROR]       mvn deploy:deploy-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=3.12.0 -Dclassifier=osx-aarch_64 -Dpackaging=exe -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
[ERROR]
[ERROR]   Path to dependency:
[ERROR]         1) org.apache.skywalking:apm-network:jar:8.4.0-SNAPSHOT
[ERROR]         2) com.google.protobuf:protoc:exe:osx-aarch_64:3.12.0
[ERROR]
[ERROR] ----------
[ERROR] 1 required artifact is missing.

 5.官方文档链接

https://skyapm.github.io/document-cn-translation-of-skywalking/zh/8.0.0/guides/How-to-build.html