python / python/cpython

freeze cannot find Modules/_hacl/libHacl_Hash_*.o

オープン
#145,810 コメント 8 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

build extension-modules type-bug
主要言語
Python
スター
77.2k
フォーク
35.9k
PR マージ指標
PR 指標を取得中

説明

Bug report

Bug description:

Dear maintainers,

unfortunately, the fix of issue #116043 in Python 3.14 does not fix the problem at all. Now freeze.py adds dependencies to some Modules/_hacl/libHacl_Hash*.o files,
although their functionality is already contained in cpython. The result again ist that linking is not possible:

/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_Blake2s.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_Blake2b.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Lib_Memzero0.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_Blake2s_Simd128.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_Blake2b_Simd256.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_MD5.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_SHA1.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_SHA2.o: No such file or directory
/usr/bin/x86_64-linux-gnu-ld.bfd: cannot find Modules/_hacl/Hacl_Hash_SHA3.o: No such file or directory
collect2: error: ld returned 1 exit status

See attached error-log.txtfor the full compilation log. Thus, only again the crude hack creating all these files as empty files helps.

Here the steps to reproduce:

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu Resolute Raccoon (development branch)
Release:        26.04
Codename:       resolute
$ python3 --version
Python 3.14.3
$ cat helloworld.py
#!/usr/bin/python3

import hashlib

print("Hello, World!")

m = hashlib.sha256()
#m = hashlib.sha3_224()
m.update(b"nobody inspects")
print(m.hexdigest())
$ /usr/share/doc/python3.14/examples/freeze/freeze.py -X setuptools -o frozen helloworld.py
$ cd frozen
$ make &> error_log.txt                              <-- see attachement to this issue
$ mkdir -p Modules/_hacl
$ touch Modules/_hacl/Hacl_Hash_Blake2s.o
$ touch Modules/_hacl/Hacl_Hash_Blake2b.o
$ touch Modules/_hacl/Lib_Memzero0.o
$ touch Modules/_hacl/Hacl_Hash_Blake2s_Simd128.o
$ touch Modules/_hacl/Hacl_Hash_Blake2b_Simd256.o
$ touch Modules/_hacl/Hacl_Hash_MD5.o
$ touch Modules/_hacl/Hacl_Hash_SHA1.o
$ touch Modules/_hacl/Hacl_Hash_SHA2.o
$ touch Modules/_hacl/Hacl_Hash_SHA3.o
$ make
$ ./helloworld
Hello, World!
5880e257e70b83842737244b412a2f282e0f230953027a22104efc615d90d3f9

Many thanks,
Chris

Attachements
error-log.txt

CPython versions tested on:

3.14

Operating systems tested on:

Linux

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

helloworld.py と hashlib の例を使用して freeze.py で失敗を再現し、その後、生成された frozen build と、リンカーエラーで示されている Modules/_hacl のオブジェクトパスを調べます。生成された依存関係と frozen tree で利用可能なファイルを比較します。手動で空の HACL オブジェクトファイルを作成せずに make が完了し、frozen executable が正常に実行できれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
build-system
issue の種類
バグ
難易度
4/5
見積もり時間
3〜5日
活発さ
停滞
明瞭さ
おおむね明確
初心者へのやさしさ
35/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。