should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
In order to bump mbedtls, we can run the helper script to download a new version and copy over existing files:
```
python inline_mbedtls.py
```
We then need to make it work in C++ and as part of our amalgamation. We have a diff available that fixes these issues for the current version. It is possible / likely this does not map 1-1 to the new version, so rejects might need to be handled.
```
git apply inline_mbedtls.diff --reject
```
It is recommended to test regular compilation, as well as the amalgamation path:
```
python scripts/amalgamation.py
clang++ -std=c++11 -Isrc/amalgamation src/amalgamation/duckdb.cpp
```