Skip to content

Commit

Permalink
Flatten hierarchy of native libs in opencv
Browse files Browse the repository at this point in the history
  • Loading branch information
Akirathan committed Jan 1, 2025
1 parent 7ea660e commit 7d89629
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/polyglot/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Supported names:

- Names for `<os>` are `linux`, `macos`, `windows`.
- Note that for simplicity we omit the versions of the operating systems.
- Names for architectures `<arch>` are `amd64`, `x86_64`, `x86_32`.
- Names for architectures `<arch>` are `amd64`, `x86_64`, `x86_32`, `aarch64`.

## Download a Java Library from Maven Central

Expand Down
10 changes: 5 additions & 5 deletions project/StdBits.scala
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ object StdBits {
} else {
Some(
strippedEntryName
.replace("linux/x86_64", "amd64/linux")
.replace("windows/x86_64", "amd64/windows")
.replace("windows/x86_32", "x86_32/windows")
.replace("osx/ARMv8", "ARMv8/macos")
.replace("osx/x86_64", "amd64/macos")
.replace("linux/x86_64", "amd64")
.replace("windows/x86_64", "amd64")
.replace("windows/x86_32", "x86_32")
.replace("osx/ARMv8", "aarch64")
.replace("osx/x86_64", "amd64")
)
}
}
Expand Down

0 comments on commit 7d89629

Please sign in to comment.