From f5259bd61499a35f9af80287ecf78a2c023f429a Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Thu, 14 Mar 2024 03:07:40 +0400 Subject: [PATCH] Avoid stripping of debug info in wheels (#23345) ### Details: - Fixed wheels to work in debug mode under `gdb` --- src/bindings/python/wheel/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bindings/python/wheel/setup.py b/src/bindings/python/wheel/setup.py index eae764ddb88..1b7af69eceb 100644 --- a/src/bindings/python/wheel/setup.py +++ b/src/bindings/python/wheel/setup.py @@ -277,7 +277,6 @@ class CustomBuild(build): self.spawn(["cmake", "--install", binary_dir, "--prefix", prefix, "--config", CONFIG, - "--strip", "--component", cpack_comp_name]) def run(self):