Skip to content

Commit

Permalink
Use BoringSSL master branch (#90)
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 Nov 1, 2024
1 parent 8ac5d99 commit 8e0ab94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions codec-ohttp-hpke-native-boringssl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,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>dd5219451c3ce26221762a15d867edf43b463bb2</boringsslCommitSha>
<boringsslBranch>master</boringsslBranch>
<boringsslCommitSha>b8c97f5b4bc5d4758612a0430e5c2792d0f9ca7f</boringsslCommitSha>

<generatedSourcesDir>${project.build.directory}/generated-sources</generatedSourcesDir>
<templateDir>${project.build.directory}/template</templateDir>
Expand Down Expand Up @@ -153,7 +153,7 @@
<!-- We need to define __STDC_CONSTANT_MACROS and __STDC_FORMAT_MACROS when building boringssl on centos 6 -->
<cmakeCxxFlags>${extraCxxflags} -Wno-error=maybe-uninitialized -Wno-error=shadow -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS</cmakeCxxFlags>
<libcrypto>libcrypto.a</libcrypto>
<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 All @@ -168,7 +168,7 @@
<!-- We need to define __STDC_CONSTANT_MACROS and __STDC_FORMAT_MACROS when building boringssl on centos 6 -->
<cmakeCxxFlags>${extraCxxflags} -Wno-error=maybe-uninitialized -Wno-error=shadow -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS</cmakeCxxFlags>
<libcrypto>libcrypto.a</libcrypto>
<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_incubator_codec_ohttp_hpke_boringssl_linux_aarch_64</jniLibName>
<jni.classifier>linux-aarch_64</jni.classifier>
Expand Down

0 comments on commit 8e0ab94

Please sign in to comment.