This website requires JavaScript.
Explore
Help
Sign In
riscv
/
yosys
mirror of
https://github.com/YosysHQ/yosys.git
Watch
1
Star
0
Fork
You've already forked yosys
0
Code
Issues
Projects
Releases
Wiki
Activity
dcc8a13e48
yosys
/
__init__.py
6 lines
94 B
Python
Raw
Normal View
History
Unescape
Escape
changed dlopen flags to support plugins
2018-10-25 09:19:22 -05:00
import
os
import
sys
sys
.
setdlopenflags
(
os
.
RTLD_NOW
|
os
.
RTLD_GLOBAL
)
added all variable in __init__.py to allow importing of the whole module
2018-10-25 09:32:28 -05:00
__all__
=
[
"
libyosys
"
]