File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -665,18 +665,8 @@ public static List<string> PossibleArchitectures(bool gpu = false)
665665 }
666666 else if ( Application . platform == RuntimePlatform . OSXEditor || Application . platform == RuntimePlatform . OSXPlayer )
667667 {
668- string arch = RuntimeInformation . ProcessArchitecture . ToString ( ) . ToLower ( ) ;
669- if ( arch . Contains ( "arm" ) )
670- {
671- architectures . Add ( "arm64-acc" ) ;
672- architectures . Add ( "arm64-no_acc" ) ;
673- }
674- else
675- {
676- if ( arch != "x86" && arch != "x64" ) LLMUnitySetup . LogWarning ( $ "Unknown architecture of processor { arch } ! Falling back to x86_64") ;
677- architectures . Add ( "x64-acc" ) ;
678- architectures . Add ( "x64-no_acc" ) ;
679- }
668+ architectures . Add ( "acc" ) ;
669+ architectures . Add ( "no_acc" ) ;
680670 }
681671 else if ( Application . platform == RuntimePlatform . Android )
682672 {
You can’t perform that action at this time.
0 commit comments