GoogleCloudPlatform / GoogleCloudPlatform/cloud-profiler-java

Cannot build on arm64

Đang mở
#59 0 bình luận 0 reaction 0 người được giao Xem trên GitHub
Ngôn ngữ chính
C++
Star
33
Fork
20
Chỉ số merge pull request
Không có pull request nào được merge trong 30 ngày

Mô tả

Exactly same issue as described in https://github.com/GoogleCloudPlatform/cloud-profiler-java/pull/49 and https://github.com/GoogleCloudPlatform/cloud-profiler-java/issues/48

Looks like there may have been a mistake when applying the fix for this issue. Build.sh is still using || instead of && for the check.

This
```
if [[ "${MACHINE_TYPE}" != "aarch64" ]] || [[ "${MACHINE_TYPE}" != "arm64" ]]; then
```
Should instead be
```
if [[ "${MACHINE_TYPE}" != "aarch64" ]] && [[ "${MACHINE_TYPE}" != "arm64" ]]; then
```

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Đánh giá

Issue này chưa được đánh giá.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.