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

Comment out strip

This commit is contained in:
Alain Dargelas 2025-03-10 14:01:07 -07:00
parent 2679e1d458
commit 811e0daeac

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")