ソースを参照

Added arm64 architecture support in python-build for macOS (#1775)

* Update python-build with arm64 architecture
pull/1806/head
Anton Petrov 5年前
committed by GitHub
コミット
9e03d1b62e
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更6行の追加1行の削除
  1. +6
    -1
      plugins/python-build/bin/python-build

+ 6
- 1
plugins/python-build/bin/python-build ファイルの表示

@ -995,7 +995,12 @@ build_package_activepython() {
anaconda_architecture() {
case "$(uname -s)" in
"Darwin" ) echo "MacOSX-x86_64" ;;
"Darwin" )
case "$(uname -m)" in
"arm64" ) echo "MacOSX-arm64" ;;
* ) echo "MacOSX-x86_64" ;;
esac
;;
"Linux" )
case "$(uname -m)" in
"armv7l" ) echo "Linux-armv7l" ;;

読み込み中…
キャンセル
保存