Skip to content

Commit

Permalink
Use MACOSX_DEPLOYMENT_TARGET=10.13 when compiling BoringSSL
Browse files Browse the repository at this point in the history
Motivation:
We need to use MACOSX_DEPLOYMENT_TARGET=10.13 when compiling BoringSSL as its the minimum as of today

Modifications:

Set MACOSX_DEPLOYMENT_TARGET=10.13

Result:

Be able to build on macOS
  • Loading branch information
normanmaurer committed Oct 29, 2024
1 parent 0040471 commit 7ec1e61
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions boringssl-static/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@
<skipJapicmp>true</skipJapicmp>
<!-- We need to use the same module name for all our "native" impls as only one should be loaded -->
<javaModuleName>${javaDefaultModuleName}</javaModuleName>
<!-- 10.13 is the minimum required by BoringSSL -->
<macOsxDeploymentTarget>MACOSX_DEPLOYMENT_TARGET=10.13</macOsxDeploymentTarget>
<cmakeOsxDeploymentTarget>-DCMAKE_OSX_DEPLOYMENT_TARGET=10.13</cmakeOsxDeploymentTarget>
</properties>

<dependencies>
Expand Down

0 comments on commit 7ec1e61

Please sign in to comment.