Skip to content

Commit

Permalink
Use BoringSSL master branch (#752)
Browse files Browse the repository at this point in the history
Motivation:

We should use the latest commit of the BoringSSL master branch to be
able to leaverage more features

Modifications:

Update branch and commit sha of boringssl

Result:

Be able to use latest features
  • Loading branch information
normanmaurer authored Oct 30, 2024
1 parent 0dccd0a commit d214fbd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions codec-native-quic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
<boringsslHomeIncludeDir>${boringsslHomeDir}/include</boringsslHomeIncludeDir>
<boringsslRepository>https://boringssl.googlesource.com/boringssl</boringsslRepository>
<!-- Lets use what we use in netty-tcnative-boringssl-static -->
<boringsslBranch>chromium-stable</boringsslBranch>
<boringsslCommitSha>1b7fdbd9101dedc3e0aa3fcf4ff74eacddb34ecc</boringsslCommitSha>
<boringsslBranch>master</boringsslBranch>
<boringsslCommitSha>b8c97f5b4bc5d4758612a0430e5c2792d0f9ca7f</boringsslCommitSha>

<quicheSourceDir>${project.build.directory}/quiche-source</quicheSourceDir>
<quicheBuildDir>${quicheSourceDir}/target/release</quicheBuildDir>
Expand Down Expand Up @@ -207,7 +207,7 @@
<libssl>libssl.a</libssl>
<libcrypto>libcrypto.a</libcrypto>
<libquiche>libquiche.a</libquiche>
<extraLdflags>-Wl,--strip-debug -Wl,--exclude-libs,ALL -Wl,-lrt</extraLdflags>
<extraLdflags>-static-libstdc++ -l:libstdc++.a -Wl,--strip-debug -Wl,--exclude-libs,ALL -Wl,-lrt</extraLdflags>
<bundleNativeCode>META-INF/native/lib${jniLibName}.so;osname=linux;processor=${os.detected.arch}</bundleNativeCode>
</properties>
</profile>
Expand Down Expand Up @@ -467,7 +467,7 @@
<libssl>libssl.a</libssl>
<libcrypto>libcrypto.a</libcrypto>
<libquiche>libquiche.a</libquiche>
<extraLdflags>-Wl,--strip-debug -Wl,--exclude-libs,ALL</extraLdflags>
<extraLdflags>-static-libstdc++ -l:libstdc++.a -Wl,--strip-debug -Wl,--exclude-libs,ALL</extraLdflags>
<bundleNativeCode>META-INF/native/lib${jniLibName}.so;osname=linux;processor=aarch64</bundleNativeCode>
<jniLibName>netty_quiche_linux_aarch_64</jniLibName>
<jni.classifier>linux-aarch_64</jni.classifier>
Expand Down

0 comments on commit d214fbd

Please sign in to comment.