Skip to content

Commit

Permalink
Use netty-tcnative-boringssl-static when on linux aarch64 (netty#12632)
Browse files Browse the repository at this point in the history
Motivation:

We only publish netty-tcnative-boringssl-static foor linux aarch64.

Modifications:

Use boringssl version

Result:

Build works on linux aarch64
  • Loading branch information
normanmaurer committed Jul 20, 2022
1 parent 1b11268 commit e158794
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,23 @@
<tcnative.classifier />
</properties>
</profile>
<profile>
<id>boringssl-linux-aarch64</id>
<activation>
<os>
<!--
Automatically active on linux with aarch64 as we only release static boringssl version of
netty-tcnative for it.
-->
<family>linux</family>
<arch>aarch64</arch>
</os>
</activation>
<properties>
<tcnative.artifactId>netty-tcnative-boringssl-static</tcnative.artifactId>
<tcnative.classifier />
</properties>
</profile>
<profile>
<id>boringssl</id>
<activation>
Expand Down

0 comments on commit e158794

Please sign in to comment.