summaryrefslogtreecommitdiffstats
path: root/contrib/python
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2026-07-01 13:23:01 +0300
committerrobot-piglet <[email protected]>2026-07-01 13:51:26 +0300
commit35086723938c3c3c9846b1d063da64be75cdc161 (patch)
treea28fa1ae67456585fa5801f27bbe4035a64c9f0e /contrib/python
parent2135a97d85fc48400cc3d0942311be98bc9148da (diff)
Intermediate changes
commit_hash:23b13c7ebfdc8eee760d4dedb5ff6baf456a8ea1
Diffstat (limited to 'contrib/python')
-rw-r--r--contrib/python/cryptography/next/rust/.yandex_meta/build.ym12
1 files changed, 9 insertions, 3 deletions
diff --git a/contrib/python/cryptography/next/rust/.yandex_meta/build.ym b/contrib/python/cryptography/next/rust/.yandex_meta/build.ym
index 27c37abb849..1a9f1137767 100644
--- a/contrib/python/cryptography/next/rust/.yandex_meta/build.ym
+++ b/contrib/python/cryptography/next/rust/.yandex_meta/build.ym
@@ -26,6 +26,7 @@ _rust
_openssl
{% endblock %}
+{% block rust_version %}nightly-2026-06-04{% endblock %}
{% block current_version %}41.0.6{% endblock %}
{% block current_url %}https://github.com/pyca/cryptography/archive/refs/tags/{{self.version().strip()}}.tar.gz{% endblock %}
@@ -46,17 +47,21 @@ export CC_aarch64_apple_darwin=mac-target-cc-arm
export DEP_OPENSSL_INCLUDE={{arcadia_root}}/contrib/libs/openssl/include
export PYO3_CROSS_PYTHON_VERSION=3.12
+export RUSTFLAGS="${RUSTFLAGS:-} -Cembed-bitcode=no"
rm -rf docs vectors tests
cd src/rust
{{super()}}
+find ${BUILD} -name '*.a' -type f | while read l; do
+ echo "_rust_eh_personality {{self.mod_name().strip()}}__rust_eh_personality" >> prog
+ llvm-objcopy --redefine-syms=prog ${l}
+ rm prog
+done
{% for p in self.msan_platforms().strip().split('\n') %}
export CC_{{p.replace('-', '_')}}=target-cc-msan
{% endfor %}
-export RUSTFLAGS="-Zsanitizer=memory -Zsanitizer-memory-track-origins=2 -Ctarget-feature=-crt-static"
-
-export RUSTC_BOOTSTRAP=1
+export RUSTFLAGS="${RUSTFLAGS:-} -Zsanitizer=memory -Zsanitizer-memory-track-origins=2 -Ctarget-feature=-crt-static -Cunsafe-allow-abi-mismatch=sanitizer -Ccodegen-units=1"
{% for arch in self.msan_platforms().strip().split('\n') %}
LD_PRELOAD=${BIN}/getrandom.so cargo {{self.cargo_flags().strip()}} build {{self.cargo_build_flags().strip()}} --release --target {{arch}} {{self.binary_type().strip()}} --target-dir ${BUILD}-msan \
@@ -69,6 +74,7 @@ find ${BUILD}-msan -name '*.a' -type f | while read l; do
llvm-nm --extern-only --defined-only -A ${l} | sed -e 's|.* ||' | grep -v 'PyInit_' | sort | while read s; do
echo "${s} {{self.mod_name().strip()}}_${s}" >> prog
done
+ echo "_rust_eh_personality {{self.mod_name().strip()}}__rust_eh_personality" >> prog
llvm-objcopy --redefine-syms=prog ${l}
rm prog
done