GoogleCloudPlatform / GoogleCloudPlatform/cloud-profiler-java
Cannot build on arm64
Offen
- Vorherrschende Sprache
- C++
- Sterne
- 33
- Forks
- 20
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
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
```
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.