Skip to content

Commit

Permalink
bugfix: desktop ARM natives are stored at wrong paths in JARs
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 25, 2025
1 parent cd0f899 commit c4620d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ model {
println 'Build ' + q + ' using ' + toolChain

String archName = targetPlatform.architecture.name;
archName = archName.replaceAll('aarch64', 'arm64')
archName = archName.replaceAll('armhf', 'arm32')
archName = archName.replaceAll('x86-64', 'x86_64')
String replaceWith = 'native/' \
+ targetPlatform.operatingSystem.name + '/' + archName + '/$1'
Expand Down

0 comments on commit c4620d6

Please sign in to comment.