Skip to content

Commit

Permalink
build: bump boringssl version
Browse files Browse the repository at this point in the history
  • Loading branch information
mbouron committed Apr 2, 2024
1 parent e3230a7 commit 6d144b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ def _gen_android_cross_file(cfg):
_RENDERDOC_ID = f"renderdoc_{_SYSTEM}"
_EXTERNAL_DEPS = dict(
boringssl=dict(
version="7a81362",
version="ec6cb3e",
url="https://codeload.github.com/google/boringssl/zip/@VERSION@",
dst_file="boringssl-@[email protected]",
sha256="1e311f2328e721bb1317b39178ea540eb43588d311051300cc9ce35e9ee64990",
sha256="02ccd210fb184a312ce1d86c946aecc570640968f8745d1ee0805d8b48c10b06",
),
ffmpeg=dict(
version="6.1.1",
Expand Down Expand Up @@ -598,6 +598,7 @@ def _ffmpeg_setup(cfg):
os.makedirs(builddir, exist_ok=True)
extra_include_dir = op.join(cfg.prefix, "include")
extra_library_dir = op.join(cfg.prefix, "lib")
extra_libs = "-lstdc++" # Required by BoringSSL
return [
f"cd {builddir} && "
+ _cmd_join(
Expand Down Expand Up @@ -630,6 +631,7 @@ def _ffmpeg_setup(cfg):
f"--cc={cfg.android_ndk_bin}{os.sep}{cfg.android_compiler}-clang",
f"--extra-cflags=-I{extra_include_dir}",
f"--extra-ldflags=-L{extra_library_dir}",
f"--extra-libs={extra_libs}",
f"--prefix={cfg.prefix}",
),
]
Expand Down

0 comments on commit 6d144b2

Please sign in to comment.