3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-18 06:39:03 +00:00

Merge pull request #61 from alaindargelas/wheel_no_strip

Comment out strip
This commit is contained in:
Akash Levy 2025-03-10 14:05:37 -07:00 committed by GitHub
commit ef1658b4b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,7 +71,9 @@ class libyosys_so_ext(Extension):
# libyosys.so
target = os.path.join(pyosys_path, os.path.basename(self.name))
shutil.copy(self.name, target)
bext.spawn(["strip", "-S", target])
# strip prevents proper debug symbols for libpyosys.so
# bext.spawn(["strip", "-S", target])
# yosys-abc
yosys_abc_target = os.path.join(pyosys_path, "yosys-abc")