比较Python中两个PyInstaller生成的Linux可执行文件

use*_*987 5 python pyinstaller python-3.x

问题很简单,但我没有看到任何样本.

我需要比较PyInstaller生成的两个可执行文件,并确定哪个是较新的(但不是简单的时间戳).时间戳可能更新,但内容保持不变.只有当两个时间戳都更新且内容不同时,才需要替换旧文件.

任何示例解决方案 例如PyInstaller中的简单版本标签(奇怪但无法找到很多信息,在手册中仅说明使用Windows版本文件)

更新:

  • Linux可执行文件
  • 有权访问文件生成过程.
  • 它是cli应用程序,最好是不使用vcs,一些简单的解决方案.
  • 实际比较过程将在Python脚本中进行
  • filecmp按照建议尝试- 它False甚至返回生成2次相同的构建(带shallow=False标志).

就我的观点而言,最佳选择是比较内容和时间戳.如果时间戳更新且内容不同=>表示新版本.

moe*_*ius 5

当您运行时pyinstaller,您必须确保执行可重现的构建。即,可用于在可执行文件之间执行逐位比较。根据文档

Python 使用随机哈希来生成字典和其他哈希类型,这会影响编译的字节码以及 PyInstaller 内部数据结构。因此,即使应用程序包的所有组件都相同并且两个应用程序以相同的方式执行,两个构建也可能不会产生完全相同的结果。

为此,只需PYTHONHASHSEED在运行之前将环境变量设置为常量pyinstaller

PYTHONHASHSEED=1
export PYTHONHASHSEED
pyinstaller --onefile test.py

unset PYTHONHASHSEED
Run Code Online (Sandbox Code Playgroud)

然后你可以使用任何你想要比较可执行文件的工具/模块,例如filecmp,BeyondCompare等,甚至只是Linux中的简单校验和:

cksum dist/test
Run Code Online (Sandbox Code Playgroud)

编辑:关于时间戳或标记二进制文件 - 您可以执行以下操作,在构建后向 Linux 二进制文件添加附加注释:

# Create a file with the notes or comments to add to the binary. 
# I am adding the current date for versioning info
date > version

# Add notes to the binary
objcopy --add-section .pyversion=version --set-section-flags .pyversion=noload,readonly dist/test dist/test-with-version

# Check the version/notes on the new binary
objdump -sj .pyversion dist/test-with-version
Run Code Online (Sandbox Code Playgroud)

你应该得到类似的东西:

dist/test-with-version:     file format elf64-x86-64
Contents of section .pyversion:
0000 46726920 53657020 31342031 343a3339  Fri Sep 14 14:39
0010 3a333620 41455354 20323031 380a      :36 AEST 2018.
Run Code Online (Sandbox Code Playgroud)