Skip to content

Commit

Permalink
Fix aarch64 vs arm64 naming mismatch
Browse files Browse the repository at this point in the history
We go with what Kotlin uses: arm64.
  • Loading branch information
ctrueden committed Feb 12, 2024
1 parent e4fb171 commit 84e5cb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ the launcher could be named `fizzbuzz.exe`.

The configurator (2) is named `jaunch-<os>-<arch>.exe`, and placed in the `jaunch`
subdirectory of your application. Examples: for ARM64 Linux it would be named
`jaunch/jaunch-linux-aarch64`, whereas for x86-64 Windows it would be named
`jaunch/jaunch-linux-arm64`, whereas for x86-64 Windows it would be named
`jaunch/jaunch-windows-x64.exe`. The reason for the `<os>-<arch>` suffix is so that
portable applications can ship with all needed jaunch configurator executables in
the same `jaunch` folder, without any name clashes.
Expand Down
2 changes: 1 addition & 1 deletion src/c/jaunch.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static int launch_jvm(
#endif

#ifdef __aarch64__
#define OS_ARCH "aarch64"
#define OS_ARCH "arm64"
#endif

// List of places to search for the jaunch configurator executable.
Expand Down

0 comments on commit 84e5cb2

Please sign in to comment.