< prev index next >

build.gradle

Print this page
*** 136,11 ***
          return 'ppc'
      }
      if (cpu.startsWith('arm')) {
          return 'arm'
      }
!     throw new GradleException("Unexpected operating system: " + cpu)
  }
  
  task local(type: Copy) {
      doFirst {
          delete project.buildDir
--- 136,14 ---
          return 'ppc'
      }
      if (cpu.startsWith('arm')) {
          return 'arm'
      }
!     if (cpu.startsWith('aarch64')) {
+         return 'aarch64';
+     }
+     throw new GradleException("Unexpected CPU: " + cpu)
  }
  
  task local(type: Copy) {
      doFirst {
          delete project.buildDir
< prev index next >