Есть ли возможность сборки с другим pyQt6 без sse4? Идеально было бы с тем pyQt6 что доступен в системе.
nuitka.utils.Execution.NuitkaCalledProcessError: Command '['/usr/bin/python3', '-c', 'from __future__ import print_function\nfrom __future__ import absolute_import\nimport os,sys\n\ntry:\n \n import os\n import PyQt6.QtCore\nexcept ImportError as e:\n sys.stderr.write("\\n%s" % repr(e))\n sys.exit(38)\n\nif sys.version_info[0] >= 3:\n import builtins\nelse:\n import __builtin__ as builtins\n\n_orig_import = builtins.__import__\n\n_dummy_file = open(os.devnull, "w")\n\ndef _import_hook(*args, **kwargs):\n old_stdout = sys.stdout\n old_stderr = sys.stderr\n\n sys.stdout = _dummy_file\n sys.stderr = _dummy_file\n\n try:\n return _orig_import(*args, **kwargs)\n finally:\n sys.stdout = old_stdout\n sys.stderr = old_stderr\n\nbuiltins.__import__ = _import_hook\n\ntry:\n print("-*-" * 15)\n print(repr(PyQt6.QtCore.QCoreApplication.libraryPaths()))\n print("-" * 27)\n print(repr(os.path.join(os.path.dirname(PyQt6.__file__), \'plugins\')))\n print("-" * 27)\n print(repr(os.path.join(os.path.dirname(PyQt6.__file__), \'..\', \'..\', \'..\', \'Library\', \'plugins\')))\n print("-" * 27)\n print(repr(os.path.join(os.path.dirname(PyQt6.__file__), \'..\', \'..\', \'..\', \'Library\', \'lib\', \'qt6\', \'plugins\')))\n print("-" * 27)\n print(repr(PyQt6.QtCore.PYQT_VERSION_STR))\n print("-" * 27)\n print(repr(getattr(PyQt6, \'_nuitka_patch_level\', 0)))\n print("-" * 27)\n print(repr(PyQt6.QtCore.QLibraryInfo.path(PyQt6.QtCore.QLibraryInfo.LibraryPath.TranslationsPath)))\n print("-" * 27)\n print(repr(os.path.join(os.path.dirname(PyQt6.__file__), \'..\', \'..\', \'..\', \'Library\', \'share\', \'qt6\', \'translations\')))\n print("-" * 27)\n print(repr(PyQt6.QtCore.QLibraryInfo.path(PyQt6.QtCore.QLibraryInfo.LibraryPath.LibraryExecutablesPath)))\n print("-" * 27)\n print(repr(os.path.join(os.path.dirname(PyQt6.__file__), \'..\', \'..\', \'..\', \'Library\', \'lib\', \'qt6\')))\n print("-" * 27)\n print(repr(PyQt6.QtCore.QLibraryInfo.path(PyQt6.QtCore.QLibraryInfo.LibraryPath.DataPath)))\n print("-" * 27)\n print(repr(os.path.join(os.path.dirname(PyQt6.__file__), \'..\', \'..\', \'..\', \'Library\', \'share\', \'qt6\', \'resources\')))\n print("-" * 27)\nexcept Exception as e:\n sys.stderr.write("\\n%s" % repr(e))\n sys.exit(39)']' died with <Signals.SIGABRT: 6>. Error was b'Incompatible processor. This Qt build requires the following features:\n sse4.1 sse4.2 popcnt'.
FATAL: pyqt6: Plugin issue while working on 'plugin startup checks'. Please report the bug with the above traceback included.
Есть ли возможность сборки с другим pyQt6 без sse4? Идеально было бы с тем pyQt6 что доступен в системе.