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:
commit
ef1658b4b1
4
setup.py
4
setup.py
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue