File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -677,18 +677,8 @@ public static List<string> PossibleArchitectures(bool gpu = false)
677677 }
678678 else if ( Application . platform == RuntimePlatform . OSXEditor || Application . platform == RuntimePlatform . OSXPlayer )
679679 {
680- string arch = RuntimeInformation . ProcessArchitecture . ToString ( ) . ToLower ( ) ;
681- if ( arch . Contains ( "arm" ) )
682- {
683- architectures . Add ( "arm64-acc" ) ;
684- architectures . Add ( "arm64-no_acc" ) ;
685- }
686- else
687- {
688- if ( arch != "x86" && arch != "x64" ) LLMUnitySetup . LogWarning ( $ "Unknown architecture of processor { arch } ! Falling back to x86_64") ;
689- architectures . Add ( "x64-acc" ) ;
690- architectures . Add ( "x64-no_acc" ) ;
691- }
680+ architectures . Add ( "acc" ) ;
681+ architectures . Add ( "no_acc" ) ;
692682 }
693683 else if ( Application . platform == RuntimePlatform . Android )
694684 {
You can’t perform that action at this time.
0 commit comments